fixed poll bug when exiting with ctrl+C

This commit is contained in:
bettercallous
2024-04-23 18:11:02 +01:00
parent a21770516b
commit 4881feb89b
4 changed files with 12 additions and 6 deletions

View File

@@ -13,6 +13,6 @@ int main(int ac, char **av)
std::cerr << e.what() << std::endl;
return 1;
}
std::cout << ">>> SERVER CLOSED <<<" << std::endl;
std::cout << RED << ">>> SERVER CLOSED <<<" << RED << std::endl;
return 0;
}