From f2f56de28e7fb6c226e464d59c11cc6cbde7f79f Mon Sep 17 00:00:00 2001 From: tangzhongrui Date: Tue, 22 Oct 2024 10:32:55 +0800 Subject: [PATCH] qerror: QERR_PROPERTY_VALUE_OUT_OF_RANGE is no longer used, drop MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Markus Armbruster Message-ID: <20241010150144.986655-8-armbru@redhat.com> Reviewed-by: Daniel P. Berrangé Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Zhongrui Tang --- include/qapi/qmp/qerror.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/qapi/qmp/qerror.h b/include/qapi/qmp/qerror.h index 8dd9fcb071..e6b1206b61 100644 --- a/include/qapi/qmp/qerror.h +++ b/include/qapi/qmp/qerror.h @@ -47,6 +47,9 @@ #define QERR_MISSING_PARAMETER \ "Parameter '%s' is missing" +#define QERR_PROPERTY_VALUE_OUT_OF_RANGE \ + "Property %s.%s doesn't take value %" PRId64 " (minimum: %" PRId64 ", maximum: %" PRId64 ")" + #define QERR_PROPERTY_VALUE_BAD \ "Property '%s.%s' doesn't take value '%s'" -- Gitee