diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-08-14 09:16:46 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-08-14 09:16:46 +0000 |
commit | 3a37c0ae23311230a85507d51023c120311bf6a7 (patch) | |
tree | befc85a20302a15a78ffea4ad3caa08f620adcb9 /src/writeout.c | |
parent | ccb3a13ce6ad5e5c3c5e0411ca57c8dd904f3d0d (diff) | |
download | curl-3a37c0ae23311230a85507d51023c120311bf6a7.tar.gz |
(un)signed and const cleanup
Diffstat (limited to 'src/writeout.c')
-rw-r--r-- | src/writeout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/writeout.c b/src/writeout.c index 7f2fa907a..2c1b3aa24 100644 --- a/src/writeout.c +++ b/src/writeout.c @@ -49,7 +49,7 @@ typedef enum { } replaceid; struct variable { - char *name; + const char *name; replaceid id; }; @@ -67,7 +67,7 @@ static struct variable replacements[]={ {"size_upload", VAR_SIZE_UPLOAD}, {"speed_download", VAR_SPEED_DOWNLOAD}, {"speed_upload", VAR_SPEED_UPLOAD}, - {NULL} + {NULL, 0} }; void ourWriteOut(CURL *curl, char *writeinfo) |