]> wimlib.net Git - wimlib/blobdiff - src/mount_image.c
Consistently use _WIN32 instead of __WIN32__
[wimlib] / src / mount_image.c
index c90911e2b0bd6e814ef5a4160a9504f7a654b97a..c7898d3df0358fd53158554d584a452b1808ccd3 100644 (file)
@@ -33,7 +33,7 @@
 
 #ifdef WITH_FUSE
 
-#ifdef __WIN32__
+#ifdef _WIN32
 #  error "FUSE mount not supported on Windows!  Please configure --without-fuse"
 #endif
 
@@ -2515,7 +2515,7 @@ wimlib_unmount_image_with_progress(const char *dir, int unmount_flags,
 static int
 mount_unsupported_error(void)
 {
-#if defined(__WIN32__)
+#ifdef _WIN32
        ERROR("Sorry-- Mounting WIM images is not supported on Windows!");
 #else
        ERROR("wimlib was compiled with --without-fuse, which disables support "