Skip to content
Snippets Groups Projects
Commit 516cc389 authored by Brad King's avatar Brad King
Browse files

ERR: Fixed missing return warning. Code was not reachable anyway.

parent 96421172
No related branches found
No related tags found
No related merge requests found
......@@ -1824,6 +1824,7 @@ static pid_t kwsysProcessFork(kwsysProcess* cp,
/* Exit without cleanup. The parent holds all resources. */
_exit(0);
return 0; /* Never reached, but avoids SunCC warning. */
}
}
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment