Skip to content

Commit 68f12f5

Browse files
committed
[svsim] Fix missing format specified
Fix a missing format specified in the `simulation-driver.cpp`. Fixes #5062. Signed-off-by: Schuyler Eldridge <[email protected]>
1 parent 11695bb commit 68f12f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

svsim/src/main/resources/simulation-driver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,7 @@ void simulation_main(int argc, char const **argv) {
10191019
// _not_ terminate the simulation when it hits a finish.
10201020
void run_simulation(int delay, int *finish) {
10211021
if (delay < 0)
1022-
failWithError("Found negative delay for events.", delay)
1022+
failWithError("Found negative delay ('%d') for events.", delay);
10231023
if (!delay) {
10241024
testbench->eval_step();
10251025
*finish = context->gotFinish();

0 commit comments

Comments
 (0)