From e697509c239a4dd22e4543aca5308b57b248e4f3 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Tue, 15 Jul 2008 00:21:55 +0000 Subject: Whoops. Missed this when adding the invalid string stuff. svn path=/trunk/libcss/; revision=4663 --- test/lex.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test') diff --git a/test/lex.c b/test/lex.c index 2e7ab0f..d808611 100644 --- a/test/lex.c +++ b/test/lex.c @@ -37,6 +37,9 @@ static void printToken(const css_token *token) case CSS_TOKEN_STRING: printf("STRING(%.*s)", token->data.len, token->data.ptr); break; + case CSS_TOKEN_INVALID_STRING: + printf("INVALID(%.*s)", token->data.len, token->data.ptr); + break; case CSS_TOKEN_HASH: printf("HASH(%.*s)", token->data.len, token->data.ptr); break; -- cgit v1.2.3