diff options
author | Chih-hung Hsieh <chh@google.com> | 2016-07-27 22:40:38 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-07-27 22:40:39 +0200 |
commit | 2a3b695168cd06c5093895568a5d70c648de8e77 (patch) | |
tree | bba862d8cd7b056082bdb8a067418d991190b86e /recovery.cpp | |
parent | Merge "Fix install.h's use of attribute printf." (diff) | |
parent | Fix clang-tidy performance warnings. (diff) | |
download | android_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.tar android_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.tar.gz android_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.tar.bz2 android_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.tar.lz android_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.tar.xz android_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.tar.zst android_bootable_recovery-2a3b695168cd06c5093895568a5d70c648de8e77.zip |
Diffstat (limited to 'recovery.cpp')
-rw-r--r-- | recovery.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp index b4dc41bfa..28dd212ba 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -1274,7 +1274,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()) && |