From: Hwankyu Jhun Date: Wed, 11 Oct 2023 06:33:50 +0000 (+0900) Subject: Fix typo X-Git-Tag: accepted/tizen/unified/20231013.095104~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fb1c42cd497ec6eb737895ac4e268be7e28c4967;p=platform%2Fcore%2Fappfw%2Famd.git Fix typo The value must be "internal". Change-Id: I2c62b13501e4bfac6efe6684bb7a2484a036efbe Signed-off-by: Hwankyu Jhun --- diff --git a/src/lib/app_info/app_info.cc b/src/lib/app_info/app_info.cc index 7fa17997..099206d7 100644 --- a/src/lib/app_info/app_info.cc +++ b/src/lib/app_info/app_info.cc @@ -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");