1
0
Fork 0
forked from len0rd/rockbox

use size_t and not int as the prototype says so

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3614 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2003-04-25 12:43:44 +00:00
parent ab3868ac1d
commit 012d1f86cc

View file

@ -138,7 +138,7 @@ static int sprfunc(void *ptr, unsigned char letter)
}
int snprintf(char *buf, int size, const char *fmt, ...)
int snprintf(char *buf, size_t size, const char *fmt, ...)
{
bool ok;
va_list ap;