summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorChih-hung Hsieh <chh@google.com>2016-07-27 22:53:01 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-07-27 22:53:01 +0200
commitfc7cbe465f7eb175e33e1939753d435c33c361cf (patch)
tree2ac000f19a34400eff83318796e968040dfc4add /recovery.cpp
parentImport translations. DO NOT MERGE (diff)
parentMerge \"Fix clang-tidy performance warnings.\" (diff)
downloadandroid_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar
android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.gz
android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.bz2
android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.lz
android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.xz
android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.zst
android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.zip
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 467b335ba..a3c4053c1 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -1337,7 +1337,7 @@ static ssize_t logrotate(
}
std::string name(filename);
- size_t dot = name.find_last_of(".");
+ size_t dot = name.find_last_of('.');
std::string sub = name.substr(0, dot);
if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&