diff options
Diffstat (limited to 'init/init_parser.cpp')
-rw-r--r-- | init/init_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/init_parser.cpp b/init/init_parser.cpp index 326ebf230..a192862df 100644 --- a/init/init_parser.cpp +++ b/init/init_parser.cpp @@ -96,7 +96,7 @@ bool Parser::ParseConfigFile(const std::string& path) { LOG(INFO) << "Parsing file " << path << "..."; Timer t; std::string data; - if (!read_file(path.c_str(), &data)) { + if (!read_file(path, &data)) { return false; } |