8000 Adjust slash position in macro definition · python/cpython@a4341c7 · GitHub
[go: up one dir, main page]

Skip to content

Commit a4341c7

Browse files
committed
Adjust slash position in macro definition
1 parent 42a4cb1 commit a4341c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/mmapmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ do { \
227227
return err; \
228228
} \
229229
} while (0)
230-
#define CHECK_VALID_OR_RELEASE(err, buffer) \
230+
#define CHECK_VALID_OR_RELEASE(err, buffer) \
231231
do { \
232232
if (self->map_handle == NULL) { \
233233
PyErr_SetString(PyExc_ValueError, "mmap closed or invalid"); \
@@ -245,7 +245,7 @@ do { \
245245
return err; \
246246
} \
247247
} while (0)
248-
#define CHECK_VALID_OR_RELEASE(err, buffer) \
248+
#define CHECK_VALID_OR_RELEASE(err, buffer) \
249249
do { \
250250
if (self->data == NULL) { \
251251
PyErr_SetString(PyExc_ValueError, "mmap closed or invalid"); \

0 commit comments

Comments
 (0)
0