From a3addedfe7e8403763ab9816e91764ad4c6d4ac4 Mon Sep 17 00:00:00 2001 From: Jeena Paradies Date: Thu, 2 Feb 2017 11:34:07 +0100 Subject: [PATCH] Add space in printout There is a space missing betweet two words in the "Please provide your username" string to separate "to" and "other". This patch adds a space in the right place. --- moxerver/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moxerver/client.c b/moxerver/client.c index 673c199..65ee94a 100644 --- a/moxerver/client.c +++ b/moxerver/client.c @@ -133,7 +133,7 @@ int client_ask_username(client_t *client) /* show username request to the client */ snprintf(msg, BUFFER_LEN, - "\nPlease provide a username to identify yourself to" + "\nPlease provide a username to identify yourself to " "other users (max %d characters):\n", USERNAME_LEN); client_write(client, msg, strlen(msg));