Fix typo 57/299857/1
authorHwankyu Jhun <h.jhun@samsung.com>
Wed, 11 Oct 2023 06:33:50 +0000 (15:33 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Wed, 11 Oct 2023 06:33:50 +0000 (15:33 +0900)
The value must be "internal".

Change-Id: I2c62b13501e4bfac6efe6684bb7a2484a036efbe
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/lib/app_info/app_info.cc

index 7fa179974be9592684f15f3da0cce15556ae4062..099206d798d3fed08b2d4af521b2d062d082d64b 100644 (file)
@@ -299,7 +299,7 @@ AppInfo::Builder& AppInfo::Builder::SetInstalledStorageLocation(
   int ret = pkgmgrinfo_appinfo_get_installed_storage_location(handle,
       &installed_storage_location);
   if (ret != PMINFO_R_OK) {
-    installed_storage_location_ = std::string("instenal");
+    installed_storage_location_ = std::string("internal");
   } else {
     if (installed_storage_location == PMINFO_EXTERNAL_STORAGE)
       installed_storage_location_ = std::string("external");