oops, missed with the #ifdef

This commit is contained in:
Bill Currie 2001-04-10 20:15:52 +00:00
parent cbb4af711c
commit e9fb7576da

View file

@ -102,9 +102,9 @@ void
Sys_mkdir (const char *path) Sys_mkdir (const char *path)
{ {
#ifdef HAVE_mkdir #ifdef HAVE_mkdir
# ifdef _WIN32
if (mkdir (path) == 0) if (mkdir (path) == 0)
return; return;
# ifdef _WIN32
# else # else
if (mkdir (path, 0777) == 0) if (mkdir (path, 0777) == 0)
return; return;