Fix #ifdef

This commit is contained in:
Raymond Hettinger 2013-07-07 02:07:23 -10:00
parent 82df925451
commit b385529ddf

View file

@ -61,7 +61,7 @@ typedef struct BLOCK {
* block is freed leaving another existing block as the new endpoint. * block is freed leaving another existing block as the new endpoint.
*/ */
#if Py_DEBUG #ifdef Py_DEBUG
#define MARK_END(link) link = NULL; #define MARK_END(link) link = NULL;
#define CHECK_END(link) assert(link == NULL); #define CHECK_END(link) assert(link == NULL);
#define CHECK_NOT_END(link) assert(link != NULL); #define CHECK_NOT_END(link) assert(link != NULL);