diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2004-12-20 18:23:43 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2004-12-20 18:23:43 +0000 |
commit | 80d301257c8b02dc2691fa8283bc02c1c84c06a3 (patch) | |
tree | 691c4f3a2f4785072e150530e8d2043135fe780b /lib/version.c | |
parent | 0e591829453b3624d7604100f3cc21136dcaf628 (diff) | |
download | curl-80d301257c8b02dc2691fa8283bc02c1c84c06a3.tar.gz |
Make some more arrays of pointers const.
Diffstat (limited to 'lib/version.c')
-rw-r--r-- | lib/version.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/version.c b/lib/version.c index 510c20afc..ebe0b5ba2 100644 --- a/lib/version.c +++ b/lib/version.c @@ -146,7 +146,7 @@ char *curl_version(void) /* data for curl_version_info */ -static const char *protocols[] = { +static const char * const protocols[] = { #ifndef CURL_DISABLE_FTP "ftp", #endif |