From bbbdd1e8779bb359060f4104699994ef5d21877e Mon Sep 17 00:00:00 2001 From: John Tytgat Date: Sat, 28 Jun 2008 13:23:19 +0000 Subject: Fix compiler errors when ptrs are 64bit. svn path=/trunk/libparserutils/; revision=4468 --- src/utils/dict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils') diff --git a/src/utils/dict.c b/src/utils/dict.c index a9d5dd8..bd9bc1a 100644 --- a/src/utils/dict.c +++ b/src/utils/dict.c @@ -253,7 +253,7 @@ static void dict_print(const void *key, const void *value, int depth) while (depth-- > 0) putchar(' '); - printf("'%.*s'\n", e->len, e->data); + printf("'%.*s'\n", (int)e->len, e->data); } /** -- cgit v1.2.3