]> wimlib.net Git - wimlib/blobdiff - src/mount_image.c
util.h: Use dummy_printf for DEBUG() and DEBUG2()
[wimlib] / src / mount_image.c
index 417d98777fd2e1a0d49029918850f62116e2e33f..839acbc86f51947378fcbd3aa0ec9884bf1755e9 100644 (file)
@@ -2625,8 +2625,12 @@ out:
 
 static inline int mount_unsupported_error()
 {
+#if defined(__CYGWIN__) || defined (__WIN32__)
+       ERROR("Sorry-- Mounting WIM images is not supported on Windows!");
+#else
        ERROR("wimlib was compiled with --without-fuse, which disables support "
              "for mounting WIMs.");
+#endif
        return WIMLIB_ERR_UNSUPPORTED;
 }