summaryrefslogtreecommitdiffstats
path: root/otafault
diff options
context:
space:
mode:
authorChih-hung Hsieh <chh@google.com>2016-07-27 22:40:38 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-07-27 22:40:39 +0200
commit2a3b695168cd06c5093895568a5d70c648de8e77 (patch)
treebba862d8cd7b056082bdb8a067418d991190b86e /otafault
parentMerge "Fix install.h's use of attribute printf." (diff)
parentFix clang-tidy performance warnings. (diff)
downloadandroid_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 'otafault')
-rw-r--r--otafault/ota_io.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/otafault/ota_io.cpp b/otafault/ota_io.cpp
index dd805e56e..cb37d515a 100644
--- a/otafault/ota_io.cpp
+++ b/otafault/ota_io.cpp
@@ -31,7 +31,7 @@ static std::string write_fault_file_name = "";
static std::string fsync_fault_file_name = "";
bool have_eio_error = false;
-static bool get_hit_file(const char* cached_path, std::string ffn) {
+static bool get_hit_file(const char* cached_path, const std::string& ffn) {
return should_hit_cache()
? !strncmp(cached_path, OTAIO_CACHE_FNAME, strlen(cached_path))
: !strncmp(cached_path, ffn.c_str(), strlen(cached_path));