From 21a66ec36b1cf3d3f47dddfeb93c4c91189bbab7 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Tue, 14 Oct 2025 19:10:15 -0500 Subject: [PATCH] wolfssl/wolfcrypt/types.h: add missing static attribute to WC_WUR_INT(). --- wolfssl/wolfcrypt/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfssl/wolfcrypt/types.h b/wolfssl/wolfcrypt/types.h index 997d43ae0..58774e2e5 100644 --- a/wolfssl/wolfcrypt/types.h +++ b/wolfssl/wolfcrypt/types.h @@ -465,7 +465,7 @@ enum { #ifdef NO_INLINE #define WC_WUR_INT(x) (x) #else - WC_INLINE WARN_UNUSED_RESULT int WC_WUR_INT(int x) { return x; } + static WC_INLINE WARN_UNUSED_RESULT int WC_WUR_INT(int x) { return x; } #endif #ifdef WORD64_AVAILABLE