Parser: fix unused variable

This commit is contained in:
Philippe Pepiot 2010-11-09 12:32:48 +01:00
parent 658e26bd49
commit f3c0f5492a

View File

@ -80,7 +80,9 @@ static struct keyword *
push_keyword(struct keyword *tail, enum keyword_t type, char *buf, size_t *offset, struct files *file, int line)
{
struct keyword *kw;
#ifdef DEBUG
int i = 0;
#endif
if (type == WORD && *offset == 0)
return tail;