diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2004-12-15 03:03:45 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2004-12-15 03:03:45 +0000 |
commit | f2fb9039bd6b09d75b0fb6f210bccf56fce995d7 (patch) | |
tree | bbb9cfae885ee0f32a3ae1f130125489211c2b4d | |
parent | a28b32aa45e5f4ce9d2bc85a840884336dd87f27 (diff) |
Make some arrays of pointers const, too.
-rw-r--r-- | src/main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main.c b/src/main.c index 5bc466ffe..87e43ff67 100644 --- a/src/main.c +++ b/src/main.c @@ -309,7 +309,7 @@ struct getout { static void help(void) { int i; - static const char *helptext[]={ + static const char * const helptext[]={ "Usage: curl [options...] <url>", "Options: (H) means HTTP/HTTPS only, (F) means FTP only", " -a/--append Append to target file when uploading (F)", @@ -3662,10 +3662,10 @@ operate(struct Configurable *config, int argc, char *argv[]) if(retry) { if(!(config->conf&CONF_MUTE)) { - static const char *m[]={NULL, - "timeout", - "HTTP error", - "FTP error" + static const char * const m[]={NULL, + "timeout", + "HTTP error", + "FTP error" }; fprintf(stderr, "Transient problem: %s\n" "Will retry in %ld seconds. " |