diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-09 08:29:09 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-09 08:29:09 +0000 |
commit | e723d2eb7c26dd13ca80bc843ab854ea3c40fe4e (patch) | |
tree | 831ab9ffb436a31e4bc19a08276a1d5dbba52f9f | |
parent | b440c6638fce6b90cd4d3210513c5f1679787607 (diff) |
use VAR_NONE instead of 0 in the table to prevent compiler warning
-rw-r--r-- | src/writeout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/writeout.c b/src/writeout.c index 5d8d7428b..a92dab715 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) |