vvp: Fix error message output when a VPI module can't be found.

This commit is contained in:
Martin Whitaker 2022-03-25 20:23:47 +00:00
parent 2bf753fd8f
commit 3c58ca908d
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ void vpip_load_module(const char*name)
if (rc != 0) {
fprintf(stderr, "%s: Unable to find module file `%s' "
"or `%s.vpi'.\n", name,name,buf);
"or `%s.vpi'.\n", name, name, name);
return;
}
} else {