From e1e2231410bb1ba303d3785b3b54d00f0b787a0a Mon Sep 17 00:00:00 2001 From: Nick Krichevsky Date: Mon, 10 Sep 2018 00:32:27 -0400 Subject: [PATCH] Newline shenanigans --- server/http_server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/http_server.c b/server/http_server.c index 29735ff..4146e91 100644 --- a/server/http_server.c +++ b/server/http_server.c @@ -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"); } } }