This should be caught elsewhere.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2474 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2007-03-11 12:27:17 +00:00
parent d804efe0cb
commit 3f81d677ff
1 changed files with 2 additions and 2 deletions

View File

@ -99,8 +99,8 @@ void Sys_mkdir (char *path)
{
if (mkdir (path, 0777) != -1)
return;
if (errno != EEXIST)
Sys_Error ("mkdir %s: %s",path, strerror(errno));
// if (errno != EEXIST)
// Sys_Error ("mkdir %s: %s",path, strerror(errno));
}
qboolean Sys_remove (char *path)