From 11cb7c2c15dd1f512df36fad3ddac87e1a45729c Mon Sep 17 00:00:00 2001 From: Mark Olsen Date: Mon, 4 Jul 2005 16:55:36 +0000 Subject: [PATCH] Added some missing newlines in error messages. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1131 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/server/sv_sys_unix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/server/sv_sys_unix.c b/engine/server/sv_sys_unix.c index a594bb20a..6506c0367 100644 --- a/engine/server/sv_sys_unix.c +++ b/engine/server/sv_sys_unix.c @@ -92,7 +92,7 @@ int Sys_EnumerateFiles (char *gpath, char *match, int (*func)(char *, int, void dir = opendir(gpath); if (!dir) { - Con_Printf("Failed to open dir"); + Con_Printf("Failed to open dir\n"); return true; } do @@ -374,7 +374,7 @@ int Sys_EnumerateFiles (char *gpath, char *match, int (*func)(char *, int, void dir = opendir(truepath); if (!dir) { - Con_Printf("Failed to open dir"); + Con_Printf("Failed to open dir\n"); return true; } do