bhyve: fix typo in error message

Use the same string as in qemu_process.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Laine Stump <laine@redhat.com>
This commit is contained in:
Ján Tomko 2023-03-17 22:43:51 +01:00
parent 9a3bccf695
commit 9fc3c2524c

View File

@ -145,7 +145,7 @@ virBhyveProcessStartImpl(struct _bhyveConn *driver,
if (unlink(driver->pidfile) < 0 &&
errno != ENOENT) {
virReportSystemError(errno,
_("Cannot remove state PID file %s"),
_("Cannot remove stale PID file %s"),
driver->pidfile);
goto cleanup;
}