From: Ján Tomko Date: Thu, 10 Apr 2025 14:42:43 +0000 (+0200) Subject: ch: fix double space in error message X-Git-Tag: v11.3.0-rc1~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a55f1930d53427c17ba685769ce4b651b3dab03a;p=thirdparty%2Flibvirt.git ch: fix double space in error message Make it match the errors in bhyve and QEMU drivers, where it was copied from. Fixes: 9d6e2d127e673642b0fb135b6d58539a8e332e08 Signed-off-by: Ján Tomko --- diff --git a/src/ch/ch_monitor.c b/src/ch/ch_monitor.c index 78b6551d6c..2a6638db4f 100644 --- a/src/ch/ch_monitor.c +++ b/src/ch/ch_monitor.c @@ -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; }