From: Raymond Hettinger Date: Sun, 7 Jul 2013 12:07:23 +0000 (-1000) Subject: Fix #ifdef X-Git-Tag: v3.4.0a1~306 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b385529ddfcd5e46890438dc32c6dba341e039b0;p=python Fix #ifdef --- diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 2b42e0a889..9924b63dff 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -61,7 +61,7 @@ typedef struct BLOCK { * block is freed leaving another existing block as the new endpoint. */ -#if Py_DEBUG +#ifdef Py_DEBUG #define MARK_END(link) link = NULL; #define CHECK_END(link) assert(link == NULL); #define CHECK_NOT_END(link) assert(link != NULL);