From: Yang Tse Date: Thu, 4 Sep 2008 14:57:03 +0000 (+0000) Subject: remove duplicate va_start() call X-Git-Tag: curl-7_19_1~421 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c0f3e324479c6c0e66f0f45c43429041f5c5d34d;p=curl remove duplicate va_start() call --- diff --git a/src/main.c b/src/main.c index 17a564772..467fe0807 100644 --- a/src/main.c +++ b/src/main.c @@ -576,7 +576,6 @@ static void warnf(struct Configurable *config, const char *fmt, ...) char *ptr; char print_buffer[256]; - va_start(ap, fmt); va_start(ap, fmt); len = vsnprintf(print_buffer, sizeof(print_buffer), fmt, ap); va_end(ap);