summaryrefslogtreecommitdiffstats
path: root/otherlibs/win32unix/mkdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/win32unix/mkdir.c')
-rw-r--r--otherlibs/win32unix/mkdir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/win32unix/mkdir.c b/otherlibs/win32unix/mkdir.c
index e35d1c13d..b6eb215d7 100644
--- a/otherlibs/win32unix/mkdir.c
+++ b/otherlibs/win32unix/mkdir.c
@@ -12,11 +12,11 @@
/* $Id$ */
#include <mlvalues.h>
-#include "unixwin.h"
+#include "unixsupport.h"
value unix_mkdir(path, perm) /* ML */
value path, perm;
{
- if (_mkdir(String_val(path) == -1) uerror("mkdir", path);
+ if (_mkdir(String_val(path)) == -1) uerror("mkdir", path);
return Val_unit;
}