Merge "Handle errors corrected exit status returned by fsck" into main
diff --git a/fs/Exfat.cpp b/fs/Exfat.cpp
index c8b19e0..ed53921 100644
--- a/fs/Exfat.cpp
+++ b/fs/Exfat.cpp
@@ -48,6 +48,9 @@
     if (rc == 0) {
         LOG(INFO) << "Check OK";
         return 0;
+    } else if (rc == 1) {
+        LOG(INFO) << "Filesystem errors corrected";
+        return 0;
     } else {
         LOG(ERROR) << "Check failed (code " << rc << ")";
         errno = EIO;