diff options
author | Yang Tse <yangsita@gmail.com> | 2008-09-18 19:17:28 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-09-18 19:17:28 +0000 |
commit | f7ef60c13f948ba41dcf76db3dbaaf29657ac4e2 (patch) | |
tree | d095214362947181b93d36143c1f99367a779dcd /tests/libtest | |
parent | 8b2bfa4212c3e534b695a74bcf9df29255d2bb00 (diff) |
fix compiler warning: external definition with no prior declaration
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib506.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libtest/lib506.c b/tests/libtest/lib506.c index 952aa997a..260fec194 100644 --- a/tests/libtest/lib506.c +++ b/tests/libtest/lib506.c @@ -15,8 +15,8 @@ #include <curl/mprintf.h> -const char *HOSTHEADER = "Host: www.host.foo.com"; -const char *JAR = "log/jar506"; +static const char *HOSTHEADER = "Host: www.host.foo.com"; +static const char *JAR = "log/jar506"; #define THREADS 2 /* struct containing data of a thread */ |