Merge "Add android::fs_mgr namespace for new Fstab code"
diff --git a/VintfObjectRecovery.cpp b/VintfObjectRecovery.cpp
index b2a9e8a..f50f210 100644
--- a/VintfObjectRecovery.cpp
+++ b/VintfObjectRecovery.cpp
@@ -61,8 +61,8 @@
             return OK;
         }
 
-        Fstab fstab;
-        if (!ReadDefaultFstab(&fstab)) {
+        android::fs_mgr::Fstab fstab;
+        if (!android::fs_mgr::ReadDefaultFstab(&fstab)) {
             return errno ? -errno : UNKNOWN_ERROR;
         }
         if (!android::fs_mgr::EnsurePathMounted(&fstab, path, mountPoint)) {