From cd3c2fdb4917dc0a4fa2b9da7d36ea34306d648b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 5 Dec 2014 00:25:48 +0100 Subject: Win32Main: make variables more local --- src/win32/Win32Main.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/win32') diff --git a/src/win32/Win32Main.cxx b/src/win32/Win32Main.cxx index 5d1f50895..894879129 100644 --- a/src/win32/Win32Main.cxx +++ b/src/win32/Win32Main.cxx @@ -122,15 +122,13 @@ console_handler(DWORD event) int win32_main(int argc, char *argv[]) { - DWORD error_code; - service_argc = argc; service_argv = argv; if (StartServiceCtrlDispatcher(service_registry)) return 0; /* run as service successefully */ - error_code = GetLastError(); + const DWORD error_code = GetLastError(); if (error_code == ERROR_FAILED_SERVICE_CONTROLLER_CONNECT) { /* running as console app */ running.store(false); -- cgit v1.2.3