Skip to content

Commit dd22fa3

Browse files
committed
Fix from testing
1 parent e67b857 commit dd22fa3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ssl_bn.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,7 @@ int wolfSSL_BN_cmp(const WOLFSSL_BIGNUM* a, const WOLFSSL_BIGNUM* b)
11391139
}
11401140
else {
11411141
PRAGMA_GCC_DIAG_PUSH
1142-
PRAGMA_GCC("GCC diagnostic ignored \"-Werror=duplicated-branches\"")
1142+
PRAGMA_GCC("GCC diagnostic ignored \"-Wduplicated-branches\"")
11431143
/* Compare big numbers with wolfCrypt. */
11441144
ret = mp_cmp((mp_int*)a->internal, (mp_int*)b->internal);
11451145
/* Convert wolfCrypt return value. */

0 commit comments

Comments
 (0)