From: Michal Privoznik Date: Fri, 25 Aug 2023 07:13:15 +0000 (+0200) Subject: locking: Move error messages onto a single line X-Git-Tag: v9.8.0-rc1~258 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fa5c92b09655daf9e5d62425771ffa09653cdb3;p=thirdparty%2Flibvirt.git locking: 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/locking/lock_driver_sanlock.c b/src/locking/lock_driver_sanlock.c index dc24862a6f..a07f3652c1 100644 --- a/src/locking/lock_driver_sanlock.c +++ b/src/locking/lock_driver_sanlock.c @@ -831,8 +831,7 @@ virLockManagerSanlockRegisterKillscript(int sock, VIR_FREE(err); } else { virReportSystemError(-rv, "%s", - _("Failed to register lock failure" - " action")); + _("Failed to register lock failure action")); } return -1; }