]> wimlib.net Git - wimlib/blobdiff - include/wimlib/paths.h
Consistently use _WIN32 instead of __WIN32__
[wimlib] / include / wimlib / paths.h
index 6ff7193e39173e77695c621fb38dc9c17deb837a..764bdcfba025dbcec02011a2c81f8a2ce6df7b80 100644 (file)
@@ -32,7 +32,7 @@ canonicalize_wim_path(const tchar *wim_path);
  * Currently needs to be '/' on UNIX for the WIM mounting code to work properly.
  */
 
-#ifdef __WIN32__
+#ifdef _WIN32
 #  define OS_PREFERRED_PATH_SEPARATOR L'\\'
 #  define is_any_path_separator(c) ((c) == L'/' || (c) == L'\\')
 #else