diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-01-05 09:27:37 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-01-05 09:27:37 +0000 |
commit | 9c95d5d28d8d40f7b826c9399f5ce781bbc61567 (patch) | |
tree | 7d9af5f26a515a954f8fc816334a6a8d6f04c91d /libc/stdio/vsnprintf.c | |
parent | e7aef8240caebd8fc69919b69ba74b021289a6b6 (diff) |
patch from Hans-Christian Egtvedt to silence some spurious signed warnings
Diffstat (limited to 'libc/stdio/vsnprintf.c')
-rw-r--r-- | libc/stdio/vsnprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/vsnprintf.c b/libc/stdio/vsnprintf.c index 84215eb86..51aaf43d0 100644 --- a/libc/stdio/vsnprintf.c +++ b/libc/stdio/vsnprintf.c @@ -55,8 +55,8 @@ int vsnprintf(char *__restrict buf, size_t size, /* Set these last since __bufputc initialization depends on * __user_locking and only gets set if user locking is on. */ - f.__bufstart = buf; - f.__bufend = buf + size; + f.__bufstart = (unsigned char *) buf; + f.__bufend = (unsigned char *) buf + size; __STDIO_STREAM_INIT_BUFREAD_BUFPOS(&f); __STDIO_STREAM_DISABLE_GETC(&f); __STDIO_STREAM_ENABLE_PUTC(&f); |