From: Ján Tomko Date: Fri, 17 Mar 2023 21:43:51 +0000 (+0100) Subject: bhyve: fix typo in error message X-Git-Tag: v9.2.0-rc1~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fc3c2524cf2ba5f70082e709f6aaa2cadc813bc;p=thirdparty%2Flibvirt.git bhyve: fix typo in error message Use the same string as in qemu_process. Signed-off-by: Ján Tomko Reviewed-by: Laine Stump --- diff --git a/src/bhyve/bhyve_process.c b/src/bhyve/bhyve_process.c index eee0c4bf1d..f8f072ff03 100644 --- a/src/bhyve/bhyve_process.c +++ b/src/bhyve/bhyve_process.c @@ -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; }