From a913288efa1f50b07370c6ed66bb7698324d6482 Mon Sep 17 00:00:00 2001 From: henri Date: Sun, 10 Aug 2014 13:22:09 +0000 Subject: [PATCH] Added missing variable declaration, as reported by Gisle Vanem --- nsock/tests/tests_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nsock/tests/tests_main.c b/nsock/tests/tests_main.c index 192aa8036..29b963747 100644 --- a/nsock/tests/tests_main.c +++ b/nsock/tests/tests_main.c @@ -81,6 +81,7 @@ static int test_case_run(const struct test_case *test) { #ifdef WIN32 static int win_init(void) { WSADATA data; + int rc; rc = WSAStartup(MAKEWORD(2, 2), &data); if (rc)