1
0
Fork 0
forked from len0rd/rockbox

and fix yet another picky warning

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17063 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2008-04-10 21:41:29 +00:00
parent 5d62f2ce8e
commit 59875c33bf

View file

@ -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;
}