(un)signed and const cleanup

This commit is contained in:
Daniel Stenberg
2001-08-14 09:16:46 +00:00
parent ccb3a13ce6
commit 3a37c0ae23
3 changed files with 15 additions and 15 deletions

View File

@@ -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)