mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
oops, missed with the #ifdef
This commit is contained in:
parent
cbb4af711c
commit
e9fb7576da
1 changed files with 1 additions and 1 deletions
|
@ -102,9 +102,9 @@ void
|
|||
Sys_mkdir (const char *path)
|
||||
{
|
||||
#ifdef HAVE_mkdir
|
||||
# ifdef _WIN32
|
||||
if (mkdir (path) == 0)
|
||||
return;
|
||||
# ifdef _WIN32
|
||||
# else
|
||||
if (mkdir (path, 0777) == 0)
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue