On 01/29/2010 03:34 AM, Markus Armbruster wrote:
This changes the error message from "Invalid CPU index" to "Invalid
parameter index" in the human monitor.
Signed-off-by: Markus Armbruster<arm...@redhat.com>
Applied both. Thanks.
Regards,
Anthony Liguori
---
monitor.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/monitor.c b/monitor.c
index fb7c572..69ebac5 100644
--- a/monitor.c
+++ b/monitor.c
@@ -897,7 +897,7 @@ static void do_cpu_set(Monitor *mon, const QDict *qdict,
QObject **ret_data)
{
int index = qdict_get_int(qdict, "index");
if (mon_set_cpu(index)< 0)
- qemu_error_new(QERR_INVALID_CPU_INDEX);
+ qemu_error_new(QERR_INVALID_PARAMETER, "index");
}
static void do_info_jit(Monitor *mon)