We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cf0c18 commit 5f84f87Copy full SHA for 5f84f87
bn_deprecated.c
@@ -9,7 +9,7 @@ int mp_get_bit(const mp_int *a, int b)
9
if (b < 0) {
10
return MP_VAL;
11
}
12
- return s_mp_get_bit(a, (unsigned int)b) == MP_YES ? MP_YES : MP_NO;
+ return (s_mp_get_bit(a, (unsigned int)b) == MP_YES) ? MP_YES : MP_NO;
13
14
#endif
15
#ifdef BN_S_MP_JACOBI_C
0 commit comments