Fix issue created by 62c14e4d5b5b5ff421742226c92dacc8621f26b7

This commit is contained in:
Andras Fekete 2023-10-02 12:34:33 -04:00
parent aedebac649
commit 47f0d5a5d0

View File

@ -47,7 +47,7 @@ char* create_tmp_dir(char *tmpDir, int len)
#ifdef _MSC_VER
if (_mkdir(tmpDir) != 0)
return NULL;
#elif defined(__CYGWIN__) || defined(__MINGW32__)
#elif defined(__MINGW32__)
if (mkdir(tmpDir) != 0)
return NULL;
#else