diff options
Diffstat (limited to '')
-rw-r--r-- | src/win32/Win32Main.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
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); |