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 <mprivozn@redhat.com>
Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
This commit is contained in:
Michal Privoznik 2023-08-24 17:03:58 +02:00
parent b0daf7fa7c
commit 4a09a89c4b

View File

@ -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;
}