]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
bhyve: fix typo in error message
authorJán Tomko <jtomko@redhat.com>
Fri, 17 Mar 2023 21:43:51 +0000 (22:43 +0100)
committerJán Tomko <jtomko@redhat.com>
Mon, 20 Mar 2023 13:32:40 +0000 (14:32 +0100)
Use the same string as in qemu_process.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Laine Stump <laine@redhat.com>
src/bhyve/bhyve_process.c

index eee0c4bf1de3b216b7c8bd2b0f46b86574ef0ebe..f8f072ff0364d0e20f39d38a2770d7afdb779a91 100644 (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;
     }