From 0c764a9dfc0d480c21f325480aa2e69581841858 Mon Sep 17 00:00:00 2001 From: Laszlo Ersek Date: Thu, 21 Mar 2013 00:23:17 +0100 Subject: acpi_table_add(): accept QemuOpts and parse it with OptsVisitor As one consequence, strtok() -- which modifies its argument -- is replaced with g_strsplit(). Signed-off-by: Laszlo Ersek Reviewed-by: Anthony Liguori Message-id: 1363821803-3380-6-git-send-email-lersek@redhat.com Signed-off-by: Anthony Liguori --- arch_init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch_init.c') diff --git a/arch_init.c b/arch_init.c index 2ed12faee9..0373a580f8 100644 --- a/arch_init.c +++ b/arch_init.c @@ -1103,10 +1103,10 @@ int qemu_uuid_parse(const char *str, uint8_t *uuid) return 0; } -void do_acpitable_option(const char *optarg) +void do_acpitable_option(const QemuOpts *opts) { #ifdef TARGET_I386 - if (acpi_table_add(optarg) < 0) { + if (acpi_table_add(opts) < 0) { fprintf(stderr, "Wrong acpi table provided\n"); exit(1); } -- cgit v1.2.1