Newline shenanigans

master
Nick Krichevsky 2018-09-10 00:32:27 -04:00
parent b2968b10e8
commit e1e2231410
1 changed files with 2 additions and 2 deletions

View File

@ -52,9 +52,9 @@ int main(int argc, char* argv[]) {
} else if (serve_result == RESULT_READ_ERROR) {
printf("\tThere was an error reading from the socket.\n");
} else if (serve_result == RESULT_PROCESSING_ERROR) {
printf("\tThere was an error while processing the data from the socket.");
printf("\tThere was an error while processing the data from the socket.\n");
} else if (serve_result == RESULT_WRITE_ERROR) {
printf("\tThere was an error writing to the socket");
printf("\tThere was an error writing to the socket.\n");
}
}
}