summaryrefslogtreecommitdiff
path: root/firmware/lib/vsprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/lib/vsprintf.c')
-rw-r--r--firmware/lib/vsprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/lib/vsprintf.c b/firmware/lib/vsprintf.c
index 9eff70b..5da7c02 100644
--- a/firmware/lib/vsprintf.c
+++ b/firmware/lib/vsprintf.c
@@ -499,7 +499,7 @@ int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
*/
int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
{
- int i;
+ unsigned int i;
i=vsnprintf(buf,size,fmt,args);
return (i >= size) ? (size - 1) : i;
@@ -545,7 +545,7 @@ int snprintf(char * buf, size_t size, const char *fmt, ...)
int scnprintf(char * buf, size_t size, const char *fmt, ...)
{
va_list args;
- int i;
+ unsigned int i;
va_start(args, fmt);
i = vsnprintf(buf, size, fmt, args);
personal git repositories of Harald Welte. Your mileage may vary