From: Michal Privoznik Date: Thu, 24 Aug 2023 15:03:58 +0000 (+0200) Subject: node_device: Move error messages onto a single line X-Git-Tag: v9.8.0-rc1~255 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a09a89c4b6be88af8e6829ff1b07ed594d2f7bc;p=thirdparty%2Flibvirt.git node_device: Move error messages onto a single line Error messages are exempt from the 80 columns rule. Move them onto one line. Signed-off-by: Michal Privoznik Reviewed-by: Pavel Hrdina --- diff --git a/src/node_device/node_device_udev.c b/src/node_device/node_device_udev.c index dfdef483cb..911325600e 100644 --- a/src/node_device/node_device_udev.c +++ b/src/node_device/node_device_udev.c @@ -1889,8 +1889,7 @@ udevEventHandleThread(void *opaque G_GNUC_UNUSED) if (errno != EAGAIN && errno != EWOULDBLOCK && errno != EINVAL) { VIR_WARNINGS_RESET virReportSystemError(errno, "%s", - _("failed to receive device from udev " - "monitor")); + _("failed to receive device from udev monitor")); return; }