Commit 30fe2576 authored by Sergey Lyubka's avatar Sergey Lyubka

Style fixes. Printing error message before fatal error.

parent ab6f145e
...@@ -369,8 +369,10 @@ int main(void) { ...@@ -369,8 +369,10 @@ int main(void) {
srand((unsigned) time(0)); srand((unsigned) time(0));
// Setup and start Mongoose // Setup and start Mongoose
ctx = mg_start(&event_handler, NULL, options); if ((ctx = mg_start(&event_handler, NULL, options)) == NULL) {
assert(ctx != NULL); printf("%s\n", "Cannot start chat server, fatal exit");
exit(EXIT_FAILURE);
}
// Wait until enter is pressed, then exit // Wait until enter is pressed, then exit
printf("Chat server started on ports %s, press enter to quit.\n", printf("Chat server started on ports %s, press enter to quit.\n",
......
Markdown is supported
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