Drop excess whitespace from error messages
Signed-off-by: Jiri Denemark <jdenemar@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
cc7058996d
commit
dc65e253fe
@ -14881,8 +14881,7 @@ virDomainControllerAliasFind(const virDomainDef *def,
|
|||||||
}
|
}
|
||||||
if (!def->controllers[contIndex]->info.alias) {
|
if (!def->controllers[contIndex]->info.alias) {
|
||||||
virReportError(VIR_ERR_INTERNAL_ERROR,
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||||
_("Device alias was not set for %s controller "
|
_("Device alias was not set for %s controller with index %d"),
|
||||||
"with index %d "),
|
|
||||||
contTypeStr, idx);
|
contTypeStr, idx);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -577,8 +577,7 @@ virNetDevVPortProfileGetStatus(struct nlattr **tb, int32_t vf,
|
|||||||
virUUIDFormat(instanceId, instanceIdStr);
|
virUUIDFormat(instanceId, instanceIdStr);
|
||||||
|
|
||||||
virReportError(VIR_ERR_INTERNAL_ERROR,
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||||
_("Could not find vf/instanceId %u/%s "
|
_("Could not find vf/instanceId %u/%s in netlink response"),
|
||||||
" in netlink response"),
|
|
||||||
vf, instanceIdStr);
|
vf, instanceIdStr);
|
||||||
|
|
||||||
/* go through all the entries again. This seems tedious,
|
/* go through all the entries again. This seems tedious,
|
||||||
|
@ -906,8 +906,7 @@ virSocketAddrGetRange(virSocketAddr *start, virSocketAddr *end,
|
|||||||
virSocketAddrPrefixToNetmask(prefix, &netmask,
|
virSocketAddrPrefixToNetmask(prefix, &netmask,
|
||||||
VIR_SOCKET_ADDR_FAMILY(network)) < 0) {
|
VIR_SOCKET_ADDR_FAMILY(network)) < 0) {
|
||||||
virReportError(VIR_ERR_INTERNAL_ERROR,
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||||
_("bad prefix %d for network %s when "
|
_("bad prefix %d for network %s when checking range %s - %s"),
|
||||||
" checking range %s - %s"),
|
|
||||||
prefix, netStr, startStr, endStr);
|
prefix, netStr, startStr, endStr);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user