Use std::system
This commit is contained in:
parent
24b3ee547c
commit
783fbbd84d
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue