fix(feuille.c): add TODO comment and fix style issue

This commit is contained in:
Tom MTT. 2022-11-28 14:26:35 +01:00
parent 5d1cbba1c0
commit e3622822fb

View file

@ -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;