summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-04-10 21:41:29 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-04-10 21:41:29 +0000
commit59875c33bfd44ef21362cb7e8091f7ab6f23eca3 (patch)
treedd6c63753b591daa5040770a56bcb3bdf66f33a5
parent5d62f2ce8ede18bca02795483ded95cafd19fd88 (diff)
and fix yet another picky warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17063 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--tools/convbdf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/convbdf.c b/tools/convbdf.c
index 121ca9be8f..513b1d7007 100644
--- a/tools/convbdf.c
+++ b/tools/convbdf.c
@@ -738,7 +738,7 @@ int rotleft(unsigned char *dst, /* output buffer */
if(((height + 7) / 8) * width > dstlen) {
fprintf(stderr, "%s:%d %d x %d overflows %d bytes buffer, needs %d\n",
- __FILE__, __LINE__, width, height, dstlen,
+ __FILE__, __LINE__, width, height, (int)dstlen,
((height + 7) / 8) * width );
return 0;
}