mirror of
https://github.com/hyprwm/Hyprland
synced 2024-12-23 05:29:48 +01:00
Fixing format issue
This commit is contained in:
parent
5fa61e5a54
commit
b69375a918
2 changed files with 24 additions and 24 deletions
|
@ -195,14 +195,14 @@ void CConfigManager::handleRawExec(const std::string& command, const std::string
|
|||
_exit(0);
|
||||
}
|
||||
close(socket[0]);
|
||||
(void) write(socket[1], &grandchild, sizeof(grandchild));
|
||||
write(socket[1], &grandchild, sizeof(grandchild));
|
||||
close(socket[1]);
|
||||
// exit child
|
||||
_exit(0);
|
||||
}
|
||||
// run in parent
|
||||
close(socket[1]);
|
||||
(void) read(socket[0], &grandchild,sizeof(grandchild));
|
||||
read(socket[0], &grandchild, sizeof(grandchild));
|
||||
close(socket[0]);
|
||||
// clear child and leave child to init
|
||||
waitpid(child, NULL, 0);
|
||||
|
|
|
@ -167,14 +167,14 @@ void CKeybindManager::spawn(std::string args) {
|
|||
_exit(0);
|
||||
}
|
||||
close(socket[0]);
|
||||
(void) write(socket[1], &grandchild, sizeof(grandchild));
|
||||
write(socket[1], &grandchild, sizeof(grandchild));
|
||||
close(socket[1]);
|
||||
// exit child
|
||||
_exit(0);
|
||||
}
|
||||
// run in parent
|
||||
close(socket[1]);
|
||||
(void) read(socket[0], &grandchild,sizeof(grandchild));
|
||||
read(socket[0], &grandchild, sizeof(grandchild));
|
||||
close(socket[0]);
|
||||
// clear child and leave child to init
|
||||
waitpid(child, NULL, 0);
|
||||
|
|
Loading…
Reference in a new issue