Merge "Fix vfat retry fsck logic" into main
diff --git a/fs/Vfat.cpp b/fs/Vfat.cpp
index c0cd918..d9e2713 100644
--- a/fs/Vfat.cpp
+++ b/fs/Vfat.cpp
@@ -114,7 +114,7 @@
                 errno = EIO;
                 return -1;
         }
-    } while (0);
+    } while (1);
 
     return 0;
 }