From b3adf5acb57dee14a74e57ab4f16cd1a83e5a7d2 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Fri, 13 Feb 2015 15:48:19 +0100 Subject: qtest: Use qemu_opt_set() instead of qemu_opts_parse() Signed-off-by: Markus Armbruster Reviewed-by: Eric Blake --- qtest.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'qtest.c') diff --git a/qtest.c b/qtest.c index 2bca04ed4c..8d1e66caa3 100644 --- a/qtest.c +++ b/qtest.c @@ -520,16 +520,13 @@ static void qtest_event(void *opaque, int event) } } -static void configure_qtest_icount(const char *options) +static int qtest_init_accel(MachineState *ms) { - QemuOpts *opts = qemu_opts_parse(qemu_find_opts("icount"), options, 1); + QemuOpts *opts = qemu_opts_create(qemu_find_opts("icount"), NULL, 0, + &error_abort); + qemu_opt_set(opts, "shift", "0", &error_abort); configure_icount(opts, &error_abort); qemu_opts_del(opts); -} - -static int qtest_init_accel(MachineState *ms) -{ - configure_qtest_icount("0"); return 0; } -- cgit v1.2.1