Update fileutils.c

Linux file permission fix
This commit is contained in:
mwalker33 2020-04-18 18:47:30 +10:00 committed by Philippe Teuwen
parent e2c56fe26c
commit 5060a52b3a

View file

@ -139,7 +139,7 @@ static bool is_directory(const char *filename) {
#ifdef _WIN32
#define make_dir(a) _mkdir(a)
#else
#define make_dir(a) mkdir(a,0x755)
#define make_dir(a) mkdir(a,0755)
#endif
bool create_path(const char *dirname) {