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.
This commit is contained in:
parent
b375ee19ce
commit
a3addedfe7
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue