diff options
author | Yang Tse <yangsita@gmail.com> | 2011-05-24 17:35:08 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-05-24 17:35:08 +0200 |
commit | ec33742d1bd22fd964fda9a9947a4ec3c3e3236a (patch) | |
tree | e9965390330e30b7d7272a1789db647e160826f1 /tests/unit/unit1300.c | |
parent | 2ea31b0e6f7c0709b4767ed1babeff6b92000282 (diff) | |
download | curl-ec33742d1bd22fd964fda9a9947a4ec3c3e3236a.tar.gz |
compiler warning: fix
Fix compiler warning: external definition with no prior declaration
Diffstat (limited to 'tests/unit/unit1300.c')
-rw-r--r-- | tests/unit/unit1300.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/unit1300.c b/tests/unit/unit1300.c index 0589c920a..792bfa1e6 100644 --- a/tests/unit/unit1300.c +++ b/tests/unit/unit1300.c @@ -23,7 +23,7 @@ #include "llist.h" -struct curl_llist *llist; +static struct curl_llist *llist; static void test_curl_llist_dtor(void *key, void *value) { |