Skip to content

Commit 5613079

Browse files
committed
suppress unused return values
1 parent 3a9cc21 commit 5613079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_struct.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2759,7 +2759,7 @@ _structmodule_clear(PyObject *module)
27592759
static void
27602760
_structmodule_free(void *module)
27612761
{
2762-
_structmodule_clear((PyObject *)module);
2762+
(void)_structmodule_clear((PyObject *)module);
27632763
}
27642764

27652765
static int

0 commit comments

Comments
 (0)