Skip to content

Commit 91ed2cf

Browse files
committed
Fix #ifdef
1 parent 443a690 commit 91ed2cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_collectionsmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ typedef struct BLOCK {
6161
* block is freed leaving another existing block as the new endpoint.
6262
*/
6363

64-
#if Py_DEBUG
64+
#ifdef Py_DEBUG
6565
#define MARK_END(link) link = NULL;
6666
#define CHECK_END(link) assert(link == NULL);
6767
#define CHECK_NOT_END(link) assert(link != NULL);

0 commit comments

Comments
 (0)