From: Antonio Alvarez Feijoo Date: Wed, 10 Dec 2025 15:32:08 +0000 (+0100) Subject: vmspawn: fix typo in log specifier X-Git-Tag: v259-rc3~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ed0cc458f333f8f15ae6e9012050738ab8a1e3c;p=thirdparty%2Fsystemd.git vmspawn: fix typo in log specifier Follow-up for 179dcf924f7d0ac9398f54baeb39b47abd23aeaf --- diff --git a/src/vmspawn/vmspawn.c b/src/vmspawn/vmspawn.c index 633e6a25caf..75d6c21e282 100644 --- a/src/vmspawn/vmspawn.c +++ b/src/vmspawn/vmspawn.c @@ -2871,7 +2871,7 @@ static int run_virtual_machine(int kvm_device_fd, int vhost_device_fd) { /* Exit when the child exits */ r = event_add_child_pidref(event, /* ret= */ NULL, &child_pidref, WEXITED, on_child_exit, /* userdata= */ NULL); if (r < 0) - return log_error_errno(r, "Failed to watch qemu process: &m"); + return log_error_errno(r, "Failed to watch qemu process: %m"); _cleanup_(osc_context_closep) sd_id128_t osc_context_id = SD_ID128_NULL; _cleanup_(pty_forward_freep) PTYForward *forward = NULL;