Skip to content

Commit 810ecce

Browse files
committed
suppress unused return values
1 parent c27a965 commit 810ecce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_functoolsmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1844,7 +1844,7 @@ _functools_clear(PyObject *module)
18441844
static void
18451845
_functools_free(void *module)
18461846
{
1847-
_functools_clear((PyObject *)module);
1847+
(void)_functools_clear((PyObject *)module);
18481848
}
18491849

18501850
static struct PyModuleDef_Slot _functools_slots[] = {

0 commit comments

Comments
 (0)