From 49eedd26c3f700fd0381e5815303c275668069b9 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Thu, 12 Sep 2024 14:38:25 -0700 Subject: [PATCH] Remove Inline 1. The function HashForId() was declared as INLINE. Remove it. The function is getting exported as WOLFSSH_LOCAL which conflicts with the inline. --- src/internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index e49437a6b..0e033bfee 100644 --- a/src/internal.c +++ b/src/internal.c @@ -3660,7 +3660,7 @@ static INLINE byte KeySzForId(byte id) } } -INLINE enum wc_HashType HashForId(byte id) +enum wc_HashType HashForId(byte id) { switch (id) {