Skip to content

Commit 21a66ec

Browse files
committed
wolfssl/wolfcrypt/types.h: add missing static attribute to WC_WUR_INT().
1 parent 1602ed2 commit 21a66ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wolfssl/wolfcrypt/types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ enum {
465465
#ifdef NO_INLINE
466466
#define WC_WUR_INT(x) (x)
467467
#else
468-
WC_INLINE WARN_UNUSED_RESULT int WC_WUR_INT(int x) { return x; }
468+
static WC_INLINE WARN_UNUSED_RESULT int WC_WUR_INT(int x) { return x; }
469469
#endif
470470

471471
#ifdef WORD64_AVAILABLE

0 commit comments

Comments
 (0)