Skip to content

Commit 9c5d39b

Browse files
committed
Rename V -> SEQ
1 parent bbf5699 commit 9c5d39b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Modules/posixmodule.c

+8-8
Original file line numberDiff line numberDiff line change
@@ -12916,14 +12916,14 @@ _pystatvfs_fromstructstatfs(PyObject *module, struct statfs st) {
1291612916

1291712917
_Static_assert(sizeof(st.f_blocks) == sizeof(long long), "assuming large file");
1291812918

12919-
#define SET_ITEM(V, INDEX, EXPR) \
12920-
do { \
12921-
PyObject *obj = (EXPR); \
12922-
if (obj == NULL) { \
12923-
Py_DECREF((V)); \
12924-
return NULL; \
12925-
} \
12926-
PyStructSequence_SET_ITEM((V), (INDEX), obj); \
12919+
#define SET_ITEM(SEQ, INDEX, EXPR) \
12920+
do { \
12921+
PyObject *obj = (EXPR); \
12922+
if (obj == NULL) { \
12923+
Py_DECREF((V)); \
12924+
return NULL; \
12925+
} \
12926+
PyStructSequence_SET_ITEM((SEQ), (INDEX), obj); \
1292712927
} while (0)
1292812928

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

0 commit comments

Comments
 (0)