summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-07-15 00:21:55 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-07-15 00:21:55 +0000
commite697509c239a4dd22e4543aca5308b57b248e4f3 (patch)
tree736f01128bbf92eadf4a1544f727c739e22633b1 /test
parent430420e0f67c681d73d06622d71cc378cef051ff (diff)
downloadlibcss-e697509c239a4dd22e4543aca5308b57b248e4f3.tar.gz
libcss-e697509c239a4dd22e4543aca5308b57b248e4f3.tar.bz2
Whoops. Missed this when adding the invalid string stuff.
svn path=/trunk/libcss/; revision=4663
Diffstat (limited to 'test')
-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;