diff options
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/echo/echo_server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/echo/echo_server.c b/src/tools/echo/echo_server.c index d7099a2d..e457e22b 100644 --- a/src/tools/echo/echo_server.c +++ b/src/tools/echo/echo_server.c @@ -64,7 +64,7 @@ int server_main() return -1; } - printf("Echo server started..."); + printf("Echo server started...\n"); while (true) { client_fd = flow_accept(server_fd, @@ -73,7 +73,7 @@ int server_main() continue; } - printf("New flow from %s", client_name); + printf("New flow from %s\n", client_name); if (flow_alloc_resp(client_fd, 0)) { printf("Failed to give an allocate response\n"); |