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

Style fixes. Printing error message before fatal error.

parent ab6f145e
...@@ -122,7 +122,7 @@ static int handle_jsonp(struct mg_connection *conn, ...@@ -122,7 +122,7 @@ static int handle_jsonp(struct mg_connection *conn,
if (cb[0] != '\0') { if (cb[0] != '\0') {
mg_printf(conn, "%s(", cb); mg_printf(conn, "%s(", cb);
} }
return cb[0] == '\0' ? 0 : 1; return cb[0] == '\0' ? 0 : 1;
} }
...@@ -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