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

(cherry picked from commit 3c58ca908d)
This commit is contained in:
Martin Whitaker 2022-03-25 20:23:47 +00:00
parent 20b5377989
commit 5aef565b94
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 {