1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-01-26 14:03:49 +03:00

qemu: Fix minor inconsistency in error message

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
Martin Kletzander 2013-12-04 18:59:52 +01:00
parent 0c2fdd7b14
commit 8d7c668e64

View File

@ -7948,7 +7948,7 @@ qemuDomainSetMemoryParameters(virDomainPtr dom,
if (virCompareLimitUlong(mem_limit, swap_limit) > 0) {
virReportError(VIR_ERR_INVALID_ARG, "%s",
_("memory hard_limit tunable value must be lower "
"than swap_hard_limit"));
"than or equal to swap_hard_limit"));
goto cleanup;
}
}