From 59875c33bfd44ef21362cb7e8091f7ab6f23eca3 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 10 Apr 2008 21:41:29 +0000 Subject: and fix yet another picky warning git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17063 a1c6a512-1295-4272-9138-f99709370657 --- tools/convbdf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit