summaryrefslogtreecommitdiff
path: root/test/parse.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-09-05 15:20:32 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-09-05 15:20:32 +0000
commitcb2b54bef28367ef9025f11f193f3f5e0196ca60 (patch)
tree6a689d245cc4e044e87010c9c779084cc73feee1 /test/parse.c
parent447b0eccefefccf3ee4a3396bf979236ab42790e (diff)
downloadlibcss-cb2b54bef28367ef9025f11f193f3f5e0196ca60.tar.gz
libcss-cb2b54bef28367ef9025f11f193f3f5e0196ca60.tar.bz2
Fix compilation of test drivers on 64bit platforms.
svn path=/trunk/libcss/; revision=5261
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");