]> git.proxmox.com Git - qemu.git/commitdiff
Remove double error message for -device option parsing
authorMark McLoughlin <markmc@redhat.com>
Tue, 6 Oct 2009 11:17:01 +0000 (12:17 +0100)
committerAnthony Liguori <aliguori@us.ibm.com>
Tue, 6 Oct 2009 19:36:11 +0000 (14:36 -0500)
qemu_opts_parse() gives a suitable error message in all failure cases
so we can remove the error message from the caller.

Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
vl.c

diff --git a/vl.c b/vl.c
index 75b640a6bec59e4309f55c46c4ace5472876576a..d52a1e48bc49d061d24875d92fc8dd92731ed29f 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -5359,9 +5359,7 @@ int main(int argc, char **argv, char **envp)
                 add_device_config(DEV_USB, optarg);
                 break;
             case QEMU_OPTION_device:
-                opts = qemu_opts_parse(&qemu_device_opts, optarg, "driver");
-                if (!opts) {
-                    fprintf(stderr, "parse error: %s\n", optarg);
+                if (!qemu_opts_parse(&qemu_device_opts, optarg, "driver")) {
                     exit(1);
                 }
                 break;