summaryrefslogtreecommitdiff
path: root/test/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/parse.c')
-rw-r--r--test/parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parse.c b/test/parse.c
index 25d1759..1752dc2 100644
--- a/test/parse.c
+++ b/test/parse.c
@@ -59,7 +59,7 @@ static css_error event_handler(css_parser_event type,
printf("\n %d", token->type);
if (token->data.ptr != NULL)
- printf(" %.*s", token->data.len, token->data.ptr);
+ printf(" %.*s", (int) token->data.len, token->data.ptr);
} while (token != NULL);
printf("\n");