From 9fc3c2524cf2ba5f70082e709f6aaa2cadc813bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Tomko?= Date: Fri, 17 Mar 2023 22:43:51 +0100 Subject: [PATCH] bhyve: fix typo in error message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use the same string as in qemu_process. Signed-off-by: Ján Tomko Reviewed-by: Laine Stump --- src/bhyve/bhyve_process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }