Skip to content

Commit e198ce8

Browse files
committed
Fix message when opening input events
1 parent 0c7c4b0 commit e198ce8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chipflow_lib/common/sim/models.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ void fetch_actions_into_queue() {
7575
void open_input_commands(const std::string &filename) {
7676
std::ifstream f(filename);
7777
if (!f) {
78-
throw std::runtime_error("failed to open event log for writing!");
78+
throw std::runtime_error("failed to open input event stream!");
7979
}
8080
json data = json::parse(f);
8181
input_cmds = data["commands"];

0 commit comments

Comments
 (0)