Use nullptr

This commit is contained in:
Roland Winklmeier
2018-08-24 15:19:35 +02:00
parent d4608e6a5b
commit 9b3b645c12
3 changed files with 5 additions and 5 deletions

View File

@@ -48,7 +48,7 @@ namespace BlackMisc
std::array<WCHAR, MAX_PATH> wszCommandLine = {{}};
command.toWCharArray(wszCommandLine.data());
int result = CreateProcess (nullptr, wszCommandLine.data(), 0, 0, inherit, flags, nullptr, nullptr, &startupInfo, &processInfo);
int result = CreateProcess (nullptr, wszCommandLine.data(), nullptr, nullptr, inherit, flags, nullptr, nullptr, &startupInfo, &processInfo);
if (result == 0)
{