From 6e221a828f87a511aecee9d9263a1db0836701c4 Mon Sep 17 00:00:00 2001 From: Etienne Dechamps Date: Sat, 12 Jul 2014 12:57:11 +0100 Subject: [PATCH] Remove unused variable in TAP-Win32 setup_device(). MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This fixes the following compiler warning when building for Windows: mingw/device.c: In function ‘setup_device’: mingw/device.c:92:9: error: unused variable ‘thread’ [-Werror=unused-variable] HANDLE thread; ^ --- src/mingw/device.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/mingw/device.c b/src/mingw/device.c index 10f7abce..5e449d50 100644 --- a/src/mingw/device.c +++ b/src/mingw/device.c @@ -89,7 +89,6 @@ static bool setup_device(void) { bool found = false; int err; - HANDLE thread; get_config_string(lookup_config(config_tree, "Device"), &device); get_config_string(lookup_config(config_tree, "Interface"), &iface); -- 2.20.1