From 9110809c46b6be092b7aa0db5537049efbd59ed0 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/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mbedtls/config.h b/include/mbedtls/config.h index f5fe085eb..dadd8a30c 100644 --- a/include/mbedtls/config.h +++ b/include/mbedtls/config.h @@ -3731,7 +3731,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 */ /**