mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
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:
parent
d804efe0cb
commit
3f81d677ff
1 changed files with 2 additions and 2 deletions
|
@ -99,8 +99,8 @@ void Sys_mkdir (char *path)
|
||||||
{
|
{
|
||||||
if (mkdir (path, 0777) != -1)
|
if (mkdir (path, 0777) != -1)
|
||||||
return;
|
return;
|
||||||
if (errno != EEXIST)
|
// if (errno != EEXIST)
|
||||||
Sys_Error ("mkdir %s: %s",path, strerror(errno));
|
// Sys_Error ("mkdir %s: %s",path, strerror(errno));
|
||||||
}
|
}
|
||||||
|
|
||||||
qboolean Sys_remove (char *path)
|
qboolean Sys_remove (char *path)
|
||||||
|
|
Loading…
Reference in a new issue