Reword the message and drop the numbers (which were reversed) from it
so that it actually makes sense.
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=
1509151
size_t i;
if (vcpus > def->maxvcpus) {
- virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
- _("maxvcpus must not be less than current vcpus (%u < %zu)"),
- vcpus, def->maxvcpus);
+ virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
+ _("maximum vCPU count must not be less than current "
+ "vCPU count"));
return -1;
}