summaryrefslogtreecommitdiff
path: root/src/tools/echo
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2016-04-21 15:04:10 +0200
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2016-04-21 15:04:10 +0200
commite57fb225562afeec7e151c64f8f4e6312b447c7c (patch)
treef88692cd216fc27f04033ce6e32372db3ae7b16d /src/tools/echo
parent18c5da3a77fd736c45730d562e35c4957269ebe3 (diff)
downloadouroboros-e57fb225562afeec7e151c64f8f4e6312b447c7c.tar.gz
ouroboros-e57fb225562afeec7e151c64f8f4e6312b447c7c.zip
ipcpd: fixes comments on 18c5da3
Diffstat (limited to 'src/tools/echo')
-rw-r--r--src/tools/echo/echo_server.c4
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");