Skip to content

Commit 9272746

Browse files
fix(shell): compile
1 parent 254b1da commit 9272746

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shell/config.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void config::read_config() {
8383
config::current = std::make_unique<config>(json.value());
8484
std::cout << "Config reloaded." << std::endl;
8585
} else {
86-
std::cerr << "Failed to read config file: " << json.error()->what()
86+
std::cerr << "Failed to read config file: " << json.error().what()
8787
<< "\nUsing default config instead." << std::endl;
8888
config::current = std::make_unique<config>();
8989
config::current->debug_console = true;

0 commit comments

Comments
 (0)