diff options
author | Yang Tse <yangsita@gmail.com> | 2006-10-09 11:21:40 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2006-10-09 11:21:40 +0000 |
commit | 15e3dfe1d34040165d5ef12c69e8b91dc8eda8ef (patch) | |
tree | 35ee926fced87e7165fe688e5762bdb631133962 /tests | |
parent | a1de9367ecc17ae1d77e46b76fb1aba6c9f3ccb2 (diff) |
Compiler warning fix
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libtest/lib533.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/libtest/lib533.c b/tests/libtest/lib533.c index 3a1e7dff6..dab8f6bb6 100644 --- a/tests/libtest/lib533.c +++ b/tests/libtest/lib533.c @@ -24,14 +24,13 @@ int test(char *URL) char done=FALSE; CURLM *m; int current=0; - int i; /* In windows, this will init the winsock stuff */ curl_global_init(CURL_GLOBAL_ALL); curl = curl_easy_init(); if(!curl) - return 100 + i; /* major bad */ + return 100; /* major bad */ curl_easy_setopt(curl, CURLOPT_URL, URL); curl_easy_setopt(curl, CURLOPT_VERBOSE, 1); |