From cc5174a89a6092d92903708cf75fdb0b91f4b740 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Sat, 10 Jun 2006 17:35:28 +0000 Subject: Fix "'x' might be used uninitialized in this function" warnings. --- tests/libtest/lib507.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/libtest/lib507.c') diff --git a/tests/libtest/lib507.c b/tests/libtest/lib507.c index b16c23368..4e776ec4a 100644 --- a/tests/libtest/lib507.c +++ b/tests/libtest/lib507.c @@ -5,7 +5,7 @@ int test(char *URL) CURL* curls; CURLM* multi; int still_running; - int i; + int i = -1; CURLMsg *msg; multi = curl_multi_init(); -- cgit v1.2.1