Skip to content

Commit 337cb29

Browse files
committed
suppress unused return values
1 parent 6268c5e commit 337cb29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_collectionsmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2808,7 +2808,7 @@ collections_clear(PyObject *mod)
28082808
static void
28092809
collections_free(void *module)
28102810
{
2811-
collections_clear((PyObject *)module);
2811+
(void)collections_clear((PyObject *)module);
28122812
}
28132813

28142814
PyDoc_STRVAR(collections_doc,

0 commit comments

Comments
 (0)