Snippets for nettle 3.10.2 from FreeBSD 150arm64
Sourced from https://pkg-status.freebsd.org/ampere5/data/latest-per-pkg/nettle/3.10.2/150arm64-default.log.
-
getopt.c:254:25: warning: unused parameter 'argc' [-Wunused-parameter] 254 | _getopt_initialize (int argc, char *const *argv, const char *optstring, | ^ -
getopt.c:254:44: warning: unused parameter 'argv' [-Wunused-parameter] 254 | _getopt_initialize (int argc, char *const *argv, const char *optstring, | ^ -
ecc-random.c:49:10: warning: use of bitwise '&' with boolean operands [-Wbitwise-instead-of-logical] 49 | return !sec_zero_p (xp, m->size) | ^~~~~~~~~~~~~~~~~~~~~~~~~ 50 | & (mpn_sub_n (scratch, xp, m->m, m->size) != 0); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | &&