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
This commit is contained in:
parent
7e9bbc3fac
commit
11cb7c2c15
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue