Use std::system

This commit is contained in:
Szymon Szeląg 2019-02-05 23:08:39 +01:00
parent 24b3ee547c
commit 783fbbd84d
1 changed files with 1 additions and 1 deletions

View File

@ -694,7 +694,7 @@ ServerApp::handleScreenSwitched(const Event& e, void*)
cmd += info->m_screen; cmd += info->m_screen;
cmd += " &"; cmd += " &";
system(cmd.c_str()); std::system(cmd.c_str());
} }
#endif #endif
} }