summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-12-02 01:25:23 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-12-02 01:25:23 +0000
commite43ba591f6346dad9033d19137a7fe94ab267b7f (patch)
tree47b859c648d745758396c14288e6ab5ff1ab1a8b /src/utils
parent6fe235668e49b9bddff568e0df5ce8797c57201b (diff)
downloadlibparserutils-e43ba591f6346dad9033d19137a7fe94ab267b7f.tar.gz
libparserutils-e43ba591f6346dad9033d19137a7fe94ab267b7f.tar.bz2
Fix build on 32bit platforms.
svn path=/trunk/libparserutils/; revision=5868
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/chunkarray.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/chunkarray.c b/src/utils/chunkarray.c
index cd2acaa..ef3fb60 100644
--- a/src/utils/chunkarray.c
+++ b/src/utils/chunkarray.c
@@ -222,7 +222,7 @@ void parserutils_chunkarray_dump(parserutils_chunkarray *array)
n * CHUNK_SIZE,
(count * 100) / ((float) n * CHUNK_SIZE));
- printf("Total: %zu (%lu) (%lu)\n", total, sizeof(chunk),
- sizeof(parserutils_chunkarray));
+ printf("Total: %zu (%u) (%u)\n", total, (unsigned int) sizeof(chunk),
+ (unsigned int) sizeof(parserutils_chunkarray));
}