Skip to content
Prev Previous commit
Next Next commit
suppress unused return values
  • Loading branch information
picnixz committed Jan 25, 2025
commit 7c59c744e3fb3f30ca1badab2a7b79d04aa98bcb
2 changes: 1 addition & 1 deletion Modules/_hashopenssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -2147,7 +2147,7 @@ hashlib_clear(PyObject *m)
static void
hashlib_free(void *m)
{
hashlib_clear((PyObject *)m);
(void)hashlib_clear((PyObject *)m);
}

/* Py_mod_exec functions */
Expand Down