From cb2b54bef28367ef9025f11f193f3f5e0196ca60 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 5 Sep 2008 15:20:32 +0000 Subject: Fix compilation of test drivers on 64bit platforms. svn path=/trunk/libcss/; revision=5261 --- test/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/parse.c') 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"); -- cgit v1.2.3