summaryrefslogtreecommitdiffstats
path: root/logging.cpp
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2018-12-19 23:34:41 +0100
committerandroid-build-merger <android-build-merger@google.com>2018-12-19 23:34:41 +0100
commit081c05f39576ec9d59eba7077b6f60caa0b85c64 (patch)
tree76db008013c3391d38836ec3b09fd8d5449e5cb9 /logging.cpp
parentMove parts of roots.cpp to libfs_mgr am: 0f339e27bb (diff)
parentMerge changes from topic "vintf_object_recovery_mount" (diff)
downloadandroid_bootable_recovery-081c05f39576ec9d59eba7077b6f60caa0b85c64.tar
android_bootable_recovery-081c05f39576ec9d59eba7077b6f60caa0b85c64.tar.gz
android_bootable_recovery-081c05f39576ec9d59eba7077b6f60caa0b85c64.tar.bz2
android_bootable_recovery-081c05f39576ec9d59eba7077b6f60caa0b85c64.tar.lz
android_bootable_recovery-081c05f39576ec9d59eba7077b6f60caa0b85c64.tar.xz
android_bootable_recovery-081c05f39576ec9d59eba7077b6f60caa0b85c64.tar.zst
android_bootable_recovery-081c05f39576ec9d59eba7077b6f60caa0b85c64.zip
Diffstat (limited to 'logging.cpp')
-rw-r--r--logging.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/logging.cpp b/logging.cpp
index 50642a26b..283d11507 100644
--- a/logging.cpp
+++ b/logging.cpp
@@ -46,7 +46,7 @@ static const std::string LAST_LOG_FILTER = "recovery/last_log";
// fopen(3)'s the given file, by mounting volumes and making parent dirs as necessary. Returns the
// file pointer, or nullptr on error.
static FILE* fopen_path(const std::string& path, const char* mode) {
- if (ensure_path_mounted(path.c_str()) != 0) {
+ if (ensure_path_mounted(path) != 0) {
LOG(ERROR) << "Can't mount " << path;
return nullptr;
}