ch: 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 34f5d89e40
commit bfa322d6ce
2 changed files with 2 additions and 4 deletions

View File

@ -1379,8 +1379,7 @@ chDomainPinEmulator(virDomainPtr dom,
if (virDomainCgroupSetupCpusetCpus(cgroup_emulator, pcpumap) < 0) { if (virDomainCgroupSetupCpusetCpus(cgroup_emulator, pcpumap) < 0) {
virReportError(VIR_ERR_OPERATION_INVALID, "%s", virReportError(VIR_ERR_OPERATION_INVALID, "%s",
_("failed to set cpuset.cpus in cgroup" _("failed to set cpuset.cpus in cgroup for emulator threads"));
" for emulator threads"));
goto endjob; goto endjob;
} }
} }

View File

@ -637,8 +637,7 @@ virCHMonitorCurlPerform(CURL *handle)
if (responseCode < 0) { if (responseCode < 0) {
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
_("curl_easy_getinfo(CURLINFO_RESPONSE_CODE) returned a " _("curl_easy_getinfo(CURLINFO_RESPONSE_CODE) returned a negative response code"));
"negative response code"));
return -1; return -1;
} }