From 3fdefd1abfdd62154b910859a4263e964bc8d810 Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Thu, 5 May 2005 11:28:49 +0000 Subject: [PATCH] - Use the WIN32 option to select the correct mkdir. svn path=/trunk/; revision=14993 --- reactos/tools/rmkdir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/rmkdir.c b/reactos/tools/rmkdir.c index 4a597f39aaf..ecd54c71611 100644 --- a/reactos/tools/rmkdir.c +++ b/reactos/tools/rmkdir.c @@ -58,7 +58,7 @@ int mkdir_p(char* path) { return(0); } -#ifdef UNIX_PATHS +#ifndef WIN32 if (mkdir(path, 0755) != 0) { perror("Failed to create directory");