]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
ch: fix double space in error message
authorJán Tomko <jtomko@redhat.com>
Thu, 10 Apr 2025 14:42:43 +0000 (16:42 +0200)
committerJán Tomko <jtomko@redhat.com>
Thu, 10 Apr 2025 14:44:42 +0000 (16:44 +0200)
Make it match the errors in bhyve and QEMU drivers, where it was copied
from.

Fixes: 9d6e2d127e673642b0fb135b6d58539a8e332e08
Signed-off-by: Ján Tomko <jtomko@redhat.com>
src/ch/ch_monitor.c

index 78b6551d6cbf740ca74dfe8c0c051b6f90df0aa7..2a6638db4fed226abdf85106024b54fac482715b 100644 (file)
@@ -674,7 +674,7 @@ virCHMonitorNew(virDomainObj *vm, virCHDriverConfig *cfg, int logfile)
 
     if ((rv = virPidFileReadPath(priv->pidfile, &vm->pid)) < 0) {
         virReportSystemError(-rv,
-                             _("Domain  %1$s didn't show up"),
+                             _("Domain %1$s didn't show up"),
                              vm->def->name);
         return NULL;
     }