diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2004-12-15 01:38:25 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2004-12-15 01:38:25 +0000 |
commit | 1ba47e7af9edfa682faba73df8bf0dc240facb19 (patch) | |
tree | 38a53c7789ef88b169a8ee41642e702a2c34a904 /src/writeenv.c | |
parent | 9359498b065a98361c25a9635aac1284ea261903 (diff) | |
download | curl-1ba47e7af9edfa682faba73df8bf0dc240facb19.tar.gz |
Add 'const' to immutable arrays.
Diffstat (limited to 'src/writeenv.c')
-rw-r--r-- | src/writeenv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/writeenv.c b/src/writeenv.c index 833d9a679..90d341356 100644 --- a/src/writeenv.c +++ b/src/writeenv.c @@ -26,12 +26,13 @@ #ifdef USE_ENVIRONMENT #include <curl/curl.h> +#include "writeenv.h" #ifdef __riscos__ #include <kernel.h> #endif -struct +static const struct { const char * name; CURLINFO id; |