Merge "storaged: Fix bug in empty check"
diff --git a/storaged/storaged_info.cpp b/storaged/storaged_info.cpp
index 33500db..3e646e0 100644
--- a/storaged/storaged_info.cpp
+++ b/storaged/storaged_info.cpp
@@ -328,7 +328,7 @@
     vector<StorageInfo> halInfos;
     auto ret = mHealth->getStorageInfo(&halInfos);
     if (ret.isOk()) {
-        if (halInfos.size() == 0) {
+        if (halInfos.size() != 0) {
             set_values_from_hal_storage_info(halInfos[0]);
             publish();
             return;