Skip to content

Commit e895a54

Browse files
authored
fix: add missing format field (#1578)
1 parent cdc15a6 commit e895a54

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/btop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1200,7 +1200,7 @@ static auto configure_tty_mode(std::optional<bool> force_tty) {
12001200
}
12011201
}
12021202
catch (const std::exception& e) {
1203-
Global::exit_error_msg = fmt::format("Exception in main loop -> ", e.what());
1203+
Global::exit_error_msg = fmt::format("Exception in main loop -> {}", e.what());
12041204
clean_quit(1);
12051205
}
12061206
return 0;

0 commit comments

Comments
 (0)