summaryrefslogtreecommitdiffstats
path: root/minui/resources.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-12-21 15:48:53 +0100
committerandroid-build-merger <android-build-merger@google.com>2017-12-21 15:48:53 +0100
commit77e8137720a486adda3a68103bf0894210324fed (patch)
treef5413c369845604f518505523d807cc1b9f4e482 /minui/resources.cpp
parentMerge "Let update_verifier work on non-AB update devices" am: 3fe230a1e4 am: 4b7ed5a71b (diff)
parentMerge "StartsWith allows a std::string prefix now." am: 80ccac2fff (diff)
downloadandroid_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.tar
android_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.tar.gz
android_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.tar.bz2
android_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.tar.lz
android_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.tar.xz
android_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.tar.zst
android_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.zip
Diffstat (limited to 'minui/resources.cpp')
-rw-r--r--minui/resources.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/minui/resources.cpp b/minui/resources.cpp
index 837f5ebca..52ab60b1b 100644
--- a/minui/resources.cpp
+++ b/minui/resources.cpp
@@ -397,7 +397,7 @@ bool matches_locale(const std::string& prefix, const std::string& locale) {
// match the locale string without the {script} section.
// For instance, prefix == "en" matches locale == "en-US", prefix == "sr-Latn" matches locale
// == "sr-Latn-BA", and prefix == "zh-CN" matches locale == "zh-Hans-CN".
- if (android::base::StartsWith(locale, prefix.c_str())) {
+ if (android::base::StartsWith(locale, prefix)) {
return true;
}