diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-08-14 08:32:03 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-08-14 08:32:03 +0000 |
commit | 95e7e551f65723f9c632c40b8cccc625a6d289ec (patch) | |
tree | 7f9b8e415bdb5f392a29e587dc6747a8782b08ba | |
parent | 5afc69487981557710037f6bfd858fc81fd4ffee (diff) |
added const char * => char * typecast
-rw-r--r-- | lib/mprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |