summaryrefslogtreecommitdiff
path: root/services/incremental/IncrementalService.cpp
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2020-04-23 08:32:16 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2020-04-23 08:32:16 +0000
commitdefa83d8d9e88e08664ad190b0143e1f1791ea5a (patch)
tree85c22f61c05d2d80981fe8d9e7b366576ebcd540 /services/incremental/IncrementalService.cpp
parent2ef151d3c186c74c3bc6cbd63bba003417146535 (diff)
parent510037b064fd5a9bc4f9c6516b55c1787709c62d (diff)
Merge "[cleanup] Enable clang-tidy and fix warnings" into rvc-dev
Diffstat (limited to 'services/incremental/IncrementalService.cpp')
-rw-r--r--services/incremental/IncrementalService.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/incremental/IncrementalService.cpp b/services/incremental/IncrementalService.cpp
index dc05cb69d4c5..a6c45cc6c26f 100644
--- a/services/incremental/IncrementalService.cpp
+++ b/services/incremental/IncrementalService.cpp
@@ -1395,7 +1395,7 @@ bool IncrementalService::configureNativeBinaries(StorageId storage, std::string_
auto startFileTs = Clock::now();
const auto libName = path::basename(fileName);
- const auto targetLibPath = path::join(libDirRelativePath, libName);
+ auto targetLibPath = path::join(libDirRelativePath, libName);
const auto targetLibPathAbsolute = normalizePathToStorage(*ifs, storage, targetLibPath);
// If the extract file already exists, skip
if (access(targetLibPathAbsolute.c_str(), F_OK) == 0) {