summaryrefslogtreecommitdiff
path: root/test/lex.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/lex.c')
-rw-r--r--test/lex.c3
1 files changed, 3 insertions, 0 deletions
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;