From 95e7e551f65723f9c632c40b8cccc625a6d289ec Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 14 Aug 2001 08:32:03 +0000 Subject: [PATCH] added const char * => char * typecast --- lib/mprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mprintf.c b/lib/mprintf.c index 9d446070c..91f10fcb0 100644 --- a/lib/mprintf.c +++ b/lib/mprintf.c @@ -864,7 +864,7 @@ static int dprintf_formatf( p->flags &= (~FLAGS_ALT); } else { - str = ""; + str = (char *)""; len = 0; } }