diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-04-10 21:41:29 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-04-10 21:41:29 +0000 |
commit | 59875c33bfd44ef21362cb7e8091f7ab6f23eca3 (patch) | |
tree | dd6c63753b591daa5040770a56bcb3bdf66f33a5 | |
parent | 5d62f2ce8ede18bca02795483ded95cafd19fd88 (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.c | 2 |
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; } |