From cd79dfc4bbfb8b89d4ba9d12024a7e1d90c01cef Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Thu, 30 Sep 2021 18:53:36 +0200 Subject: [PATCH] Fix mistake in the sample implementation of MBEDTLS_CHECK_RETURN Signed-off-by: Gilles Peskine --- include/mbedtls/mbedtls_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mbedtls/mbedtls_config.h b/include/mbedtls/mbedtls_config.h index c31a2cee5..f7d06d03a 100644 --- a/include/mbedtls/mbedtls_config.h +++ b/include/mbedtls/mbedtls_config.h @@ -3103,7 +3103,7 @@ * If the implementation here is empty, this will effectively disable the * checking of functions' return values. */ -//#define MBEDTLS_CHECK_RETURN __attribute__(__warn_unused_result__) +//#define MBEDTLS_CHECK_RETURN __attribute__((__warn_unused_result__)) /* PSA options */ /**