From 9d316fc23416bba262a5f4c7ee471d17272edfb6 Mon Sep 17 00:00:00 2001 From: Eric Blankenhorn Date: Mon, 30 Mar 2026 09:04:27 -0500 Subject: [PATCH] Fix GCC 3.4.0 build error --- wolfssl/wolfcrypt/wc_port.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfssl/wolfcrypt/wc_port.h b/wolfssl/wolfcrypt/wc_port.h index f2ac50ddcd8..a17fcd08656 100644 --- a/wolfssl/wolfcrypt/wc_port.h +++ b/wolfssl/wolfcrypt/wc_port.h @@ -76,7 +76,7 @@ #endif /* !WARN_UNUSED_RESULT */ #ifndef WC_MAYBE_UNUSED - #if (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) || \ + #if (defined(__GNUC__) && (__GNUC__ >= 3)) || defined(__clang__) || \ defined(__IAR_SYSTEMS_ICC__) #define WC_MAYBE_UNUSED __attribute__((unused)) #else