Skip to content

Commit

Permalink
nullptr
Browse files Browse the repository at this point in the history
  • Loading branch information
PaideiaDilemma committed Feb 9, 2025
1 parent 29bb352 commit 219d993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Hypridle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ static void spawn(const std::string& args) {
sigemptyset(&sa.sa_mask);
sa.sa_flags = 0;
sa.sa_handler = SIG_DFL;
sigaction(SIGCHLD, &sa, NULL);
sigaction(SIGCHLD, &sa, nullptr);

execl("/bin/sh", "/bin/sh", "-c", args.c_str(), nullptr);
_exit(1);
Expand Down

0 comments on commit 219d993

Please sign in to comment.