summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorZack Middleton <zturtleman@gmail.com>2012-06-18 16:16:57 +0000
committerTim Angus <tim@ngus.net>2013-01-12 20:31:30 +0000
commit6373c90bd9d87753de9d3a5ef93f13321cae4a77 (patch)
tree4c4c1af40a888db41705bf84a18a2a5ea4b514e9 /src
parent9cf487dae55386d6402e0297a96fb3d9c83adb00 (diff)
add a missing '\n', remove some unwanted ones
From /dev/humancontroller.
Diffstat (limited to 'src')
-rw-r--r--src/server/sv_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/sv_client.c b/src/server/sv_client.c
index 93519177..a6d1e3fb 100644
--- a/src/server/sv_client.c
+++ b/src/server/sv_client.c
@@ -748,7 +748,7 @@ int SV_WriteDownloadToClient(client_t *cl, msg_t *msg)
else if ( !(sv_allowDownload->integer & DLF_ENABLE) ||
(sv_allowDownload->integer & DLF_NO_UDP) ) {
- Com_Printf("clientDownload: %d : \"%s\" download disabled", (int) (cl - svs.clients), cl->downloadName);
+ Com_Printf("clientDownload: %d : \"%s\" download disabled\n", (int) (cl - svs.clients), cl->downloadName);
if (sv_pure->integer) {
Com_sprintf(errorMessage, sizeof(errorMessage), "Could not download \"%s\" because autodownloading is disabled on the server.\n\n"
"You will need to get this file elsewhere before you "