From e6feb991dbd5d987e350f78906ea45ec7b3c67de Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Thu, 1 Mar 2018 19:20:34 +0100 Subject: [PATCH] Fix comment typo Replace "at network level" by "at the network level". --- app/src/server.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/server.c b/app/src/server.c index f925895e..28daabaa 100644 --- a/app/src/server.c +++ b/app/src/server.c @@ -95,10 +95,10 @@ SDL_bool server_start(struct server *server, const char *serial, Uint16 local_po } // At the application level, the device part is "the server" because it - // serves video stream and control. However, at network level, the client - // listens and the server connects to the client. That way, the client can - // listen before starting the server app, so there is no need to try to - // connect until the server socket is listening on the device. + // serves video stream and control. However, at the network level, the + // client listens and the server connects to the client. That way, the + // client can listen before starting the server app, so there is no need to + // try to connect until the server socket is listening on the device. server->server_socket = listen_on_port(local_port); if (server->server_socket == INVALID_SOCKET) {