fix(feuille.c): add TODO comment and fix style issue
This commit is contained in:
parent
5d1cbba1c0
commit
e3622822fb
1 changed files with 2 additions and 1 deletions
|
@ -386,7 +386,8 @@ int main(int argc, char *argv[])
|
|||
verbose(1, "beginning to accept incoming connections.");
|
||||
|
||||
/* wait for children to finish */
|
||||
while(wait(0) > 0);
|
||||
// TODO: handle children exit codes properly
|
||||
while (wait(0) > 0);
|
||||
close(server);
|
||||
|
||||
return 0;
|
||||
|
|
Reference in a new issue