diff options
author | 2020-04-08 05:48:09 +0000 | |
---|---|---|
committer | 2020-04-08 05:48:09 +0000 | |
commit | b9bc1dffbbeadaf95f704e53cbf863fa2fecc442 (patch) | |
tree | 51885367f0a523c6cd86da9144a8624fe8828c19 /services/incremental/IncrementalService.cpp | |
parent | c920673e5f971ed1e5b022697725f649c3921a42 (diff) | |
parent | 5f9e3a0dc6566f6270005ffc3c9b5477121f2ca2 (diff) |
Merge "Uninitialized member fix :(" into rvc-dev
Diffstat (limited to 'services/incremental/IncrementalService.cpp')
-rw-r--r-- | services/incremental/IncrementalService.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/incremental/IncrementalService.cpp b/services/incremental/IncrementalService.cpp index 4fbc986352d4..d1153e6cf6e7 100644 --- a/services/incremental/IncrementalService.cpp +++ b/services/incremental/IncrementalService.cpp @@ -581,6 +581,7 @@ StorageId IncrementalService::findStorageId(std::string_view path) const { int IncrementalService::setStorageParams(StorageId storageId, bool enableReadLogs) { const auto ifs = getIfs(storageId); if (!ifs) { + LOG(ERROR) << "setStorageParams failed, invalid storageId: " << storageId; return -EINVAL; } |