diff options
author | Markus Armbruster <armbru@redhat.com> | 2013-02-06 21:27:16 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-02-06 16:35:17 -0600 |
commit | 1a69278e53a0e5060c8c6cc825449a122634ce3b (patch) | |
tree | ece4fab609091e3a595760836c72d28e0f53987e /qemu-char.c | |
parent | 3ab651fc819178cf6a518af5860cc49f42cff455 (diff) | |
download | qemu-1a69278e53a0e5060c8c6cc825449a122634ce3b.tar.gz qemu-1a69278e53a0e5060c8c6cc825449a122634ce3b.tar.bz2 qemu-1a69278e53a0e5060c8c6cc825449a122634ce3b.zip |
qmp: Use generic errors in memchar-read, memchar-write
New errors should be generic unless there's a real use case for rich
errors.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-char.c')
-rw-r--r-- | qemu-char.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qemu-char.c b/qemu-char.c index b593c50f20..2bdd1bb18a 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -2764,7 +2764,7 @@ void qmp_memchar_write(const char *device, const char *data, chr = qemu_chr_find(device); if (!chr) { - error_set(errp, QERR_DEVICE_NOT_FOUND, device); + error_setg(errp, "Device '%s' not found", device); return; } @@ -2799,7 +2799,7 @@ char *qmp_memchar_read(const char *device, int64_t size, chr = qemu_chr_find(device); if (!chr) { - error_set(errp, QERR_DEVICE_NOT_FOUND, device); + error_setg(errp, "Device '%s' not found", device); return NULL; } |