X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=common%2Fos_win32.cpp;h=617928cc080292c0055a4827c8dfd8f5af2293cd;hb=f4822bd1a2310e255d7b215bb70f5559aea50d3f;hp=e00fe64bd50edeacb197d8f04a704b3bf83b9bfc;hpb=8b58e2fc73717437867a3a944dd34c4e917af9e7;p=apitrace 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);