From: Gunter Knauf Date: Thu, 9 Aug 2007 21:05:05 +0000 (+0000) Subject: fixed a warning which MingW gcc 4.2.1. X-Git-Tag: curl-7_17_0-preldapfix~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3f62bfb61d776d8f9095c13f4cd004dd32cb3cca;p=curl fixed a warning which MingW gcc 4.2.1. --- diff --git a/lib/mprintf.c b/lib/mprintf.c index 10a8ad940..f0a383210 100644 --- a/lib/mprintf.c +++ b/lib/mprintf.c @@ -296,10 +296,10 @@ int dprintf_Pass1Report(va_stack_t *vto, int max) * ******************************************************************/ -static long dprintf_Pass1(char *format, va_stack_t *vto, char **endpos, +static long dprintf_Pass1(const char *format, va_stack_t *vto, char **endpos, va_list arglist) { - char *fmt = format; + char *fmt = (char *)format; int param_num = 0; long this_param; long width; @@ -614,7 +614,7 @@ static int dprintf_formatf( va_stack_t *p; /* Do the actual %-code parsing */ - dprintf_Pass1((char *)format, vto, endpos, ap_save); + dprintf_Pass1(format, vto, endpos, ap_save); end = &endpos[0]; /* the initial end-position from the list dprintf_Pass1() created for us */