Skip to content

Commit 3c6388b

Browse files
committed
All ()
1 parent d1da0a2 commit 3c6388b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/posixmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12920,10 +12920,10 @@ _pystatvfs_fromstructstatfs(PyObject *module, struct statfs st) {
1292012920
do { \
1292112921
PyObject *obj = (EXPR); \
1292212922
if (obj == NULL || PyErr_Occurred()) { \
12923-
Py_DECREF(V); \
12923+
Py_DECREF((V)); \
1292412924
return NULL; \
1292512925
} \
12926-
PyStructSequence_SET_ITEM(V, (INDEX), obj); \
12926+
PyStructSequence_SET_ITEM((V), (INDEX), obj); \
1292712927
} while (0)
1292812928

1292912929
SET_ITEM(v, 0, PyLong_FromLong((long) st.f_iosize));

0 commit comments

Comments
 (0)