summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uisimulator/common/io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/common/io.c b/uisimulator/common/io.c
index f44a69bc69..6e21116add 100644
--- a/uisimulator/common/io.c
+++ b/uisimulator/common/io.c
@@ -192,7 +192,7 @@ int sim_mkdir(const char *name, mode_t mode)
192 /* since we build with -DNOCYGWIN we have the plain win32 version */ 192 /* since we build with -DNOCYGWIN we have the plain win32 version */
193 return mkdir(buffer); 193 return mkdir(buffer);
194#else 194#else
195 return mkdir(buffer, 0666); 195 return mkdir(buffer, 0777);
196#endif 196#endif
197} 197}
198 198