From e726a41a74de4544b7ce7106ab3b1b88d02e48cd Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Thu, 29 Oct 2020 05:45:18 -0400 Subject: [PATCH] [core] adjust wolfssl workaround for another case adjust wolfssl types.h workaround for another edge case --- src/sys-crypto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sys-crypto.h b/src/sys-crypto.h index 71663681..81bc08fd 100644 --- a/src/sys-crypto.h +++ b/src/sys-crypto.h @@ -29,7 +29,7 @@ #define SIZEOF_LONG_LONG __SIZEOF_LONG_LONG__ #endif #endif -#if !defined(SIZEOF_LONG) && !defined(SIZEOF_LONG_LONG) +#if !defined(SIZEOF_LONG) || !defined(SIZEOF_LONG_LONG) #undef SIZEOF_LONG #undef SIZEOF_LONG_LONG #endif