Skip to content

Commit d1da0a2

Browse files
committed
ALL_CAPS
1 parent 58e1e45 commit d1da0a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Modules/posixmodule.c

Lines changed: 4 additions & 4 deletions
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) \
12919+
#define SET_ITEM(V, INDEX, EXPR) \
1292012920
do { \
12921-
PyObject *obj = (expr); \
12921+
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)