1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-09-01 01:22:04 +03:00

fix compile bug

This commit is contained in:
David Hill
2017-03-08 15:03:13 -06:00
parent a7da7044c7
commit f5274d1f9c

View File

@@ -952,7 +952,7 @@ void ProcessMonitor::processMessage(messageqcpp::ByteStream msg, messageqcpp::IO
// change permissions on /dev/shm // change permissions on /dev/shm
if ( !rootUser) if ( !rootUser)
{ {
cmd = "sudo chmod 777 /dev/shm >/dev/null 2>&1"; string cmd = "sudo chmod 777 /dev/shm >/dev/null 2>&1";
system(cmd.c_str()); system(cmd.c_str());
} }