From f4822bd1a2310e255d7b215bb70f5559aea50d3f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Mon, 30 Apr 2012 16:32:34 +0100 Subject: [PATCH] Code cleanups. Detected by MSVC11. --- common/os_win32.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/os_win32.cpp b/common/os_win32.cpp index e00fe64..617928c 100644 --- a/common/os_win32.cpp +++ b/common/os_win32.cpp @@ -125,7 +125,6 @@ quoteArg(std::string &s, const char *arg) s.push_back('"'); while (true) { c = *arg++; - switch (c) if (c == '\0') { break; } else if (c == '"') { @@ -190,7 +189,7 @@ int execute(char * const * args) WaitForSingleObject(processInformation.hProcess, INFINITE); - DWORD exitCode = ~0; + DWORD exitCode = ~0UL; GetExitCodeProcess(processInformation.hProcess, &exitCode); CloseHandle(processInformation.hProcess); -- 2.43.0