From: Daniel Stenberg Date: Mon, 9 Feb 2004 08:29:09 +0000 (+0000) Subject: use VAR_NONE instead of 0 in the table to prevent compiler warning X-Git-Tag: curl-7_11_1~380 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e723d2eb7c26dd13ca80bc843ab854ea3c40fe4e;p=thirdparty%2Fcurl.git use VAR_NONE instead of 0 in the table to prevent compiler warning --- diff --git a/src/writeout.c b/src/writeout.c index 5d8d7428b2..a92dab715b 100644 --- a/src/writeout.c +++ b/src/writeout.c @@ -80,7 +80,7 @@ static struct variable replacements[]={ {"speed_download", VAR_SPEED_DOWNLOAD}, {"speed_upload", VAR_SPEED_UPLOAD}, {"content_type", VAR_CONTENT_TYPE}, - {NULL, 0} + {NULL, VAR_NONE} }; void ourWriteOut(CURL *curl, char *writeinfo)