Wrong condition *sigh*

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-11-30 15:43:18 +01:00
parent 0627e9e06e
commit 41cb923c0c

View file

@ -1265,7 +1265,7 @@ static bool ftepp_preprocess(ftepp_t *ftepp)
case TOKEN_KEYWORD:
case TOKEN_IDENT:
case TOKEN_TYPENAME:
if (!ftepp->output_on)
if (ftepp->output_on)
macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
else
macro = NULL;