From e0259b5752f3e6d5742633c912d6b627d4ddf67b Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Fri, 25 Aug 2023 09:18:18 +0200 Subject: [PATCH] security: 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 --- src/security/security_dac.c | 3 +-- src/security/virt-aa-helper.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/security/security_dac.c b/src/security/security_dac.c index 20e0998fbc..4667328b26 100644 --- a/src/security/security_dac.c +++ b/src/security/security_dac.c @@ -2320,8 +2320,7 @@ virSecurityDACGenLabel(virSecurityManager *mgr, if (seclabel->imagelabel) { virReportError(VIR_ERR_INTERNAL_ERROR, "%s", - _("security image label already " - "defined for VM")); + _("security image label already defined for VM")); return rc; } diff --git a/src/security/virt-aa-helper.c b/src/security/virt-aa-helper.c index 91fa57ddfb..c50629d096 100644 --- a/src/security/virt-aa-helper.c +++ b/src/security/virt-aa-helper.c @@ -112,8 +112,7 @@ vah_usage(void) " -F | --append-file append file to an existing profile\n" "\n"), progname); - puts(_("This command is intended to be used by libvirtd " - "and not used directly.\n")); + puts(_("This command is intended to be used by libvirtd and not used directly.\n")); return; }