Minor debug output fix

This commit is contained in:
Justin J. Meza 2010-08-30 08:09:24 -07:00
parent 3d68f2b31b
commit d1b9c07e00
1 changed files with 1 additions and 1 deletions

View File

@ -1526,7 +1526,7 @@ TypeNode *parseTypeNode(Token ***tokenp) /**< [in,out] A pointer to the position
/* Nil */
if (acceptToken(&tokens, TT_NOOB)) {
#ifdef DEBUG
debug("CT_NI");
debug("CT_NIL");
#endif
ret = createTypeNode(CT_NIL);
if (!ret) return NULL;