Skip to content

Commit

Permalink
Fix path conversions for mingw-w64
Browse files Browse the repository at this point in the history
  • Loading branch information
mjwoods committed Sep 4, 2021
1 parent 09e0e04 commit 4d3a5ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libdispatch/dpathmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ getlocalpathkind(void)
kind = NCPD_CYGWIN;
#elif __MSYS__
kind = NCPD_MSYS;
#elif _MSC_VER /* not _WIN32 */
#elif defined(_MSC_VER) || defined(__MINGW32__) /* not _WIN32 */
kind = NCPD_WIN;
#else
kind = NCPD_NIX;
Expand Down

0 comments on commit 4d3a5ce

Please sign in to comment.