From 9a073defd1d4184532c1a7aed2ed46984d3ac20c Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 18 Apr 2013 12:45:19 -0700 Subject: [PATCH] - client: win compile warning fix --- client/app_control.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/client/app_control.cpp b/client/app_control.cpp index b9e69e5224..3547a25b49 100644 --- a/client/app_control.cpp +++ b/client/app_control.cpp @@ -210,7 +210,6 @@ int ACTIVE_TASK::request_abort() { #ifdef _WIN32 static void kill_app_process(int pid, bool will_restart) { - int retval = 0; HANDLE h = OpenProcess(READ_CONTROL | PROCESS_TERMINATE, false, pid); if (h == NULL) return; TerminateProcess(h, will_restart?0:EXIT_ABORTED_BY_CLIENT);