Skip to content
Snippets Groups Projects
Commit a5e5bab7 authored by Francois Perrad's avatar Francois Perrad Committed by Matt Johnston
Browse files

Suspicious use of ;

parent 8f96b890
Branches
Tags
No related merge requests found
...@@ -338,7 +338,7 @@ static void sigchld_handler(int UNUSED(unused)) { ...@@ -338,7 +338,7 @@ static void sigchld_handler(int UNUSED(unused)) {
const int saved_errno = errno; const int saved_errno = errno;
while(waitpid(-1, NULL, WNOHANG) > 0); while(waitpid(-1, NULL, WNOHANG) > 0) {}
sa_chld.sa_handler = sigchld_handler; sa_chld.sa_handler = sigchld_handler;
sa_chld.sa_flags = SA_NOCLDSTOP; sa_chld.sa_flags = SA_NOCLDSTOP;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment