+2001-03-05 Bruno Haible <haible@clisp.cons.org>
+
+ * vasprintf.c (int_vasprintf): Cast second arg of strtoul, to avoid
+ warning.
+
2001-02-04 Bruno Haible <haible@clisp.cons.org>
* system.h (O_BINARY, O_TEXT, setmode, fileno): New macros for systems
total_width += abs (va_arg (ap, int));
}
else
- total_width += strtoul (p, &p, 10);
+ total_width += strtoul (p, (char **) &p, 10);
if (*p == '.')
{
++p;
total_width += abs (va_arg (ap, int));
}
else
- total_width += strtoul (p, &p, 10);
+ total_width += strtoul (p, (char **) &p, 10);
}
while (strchr ("hlLjtz", *p))
++p;