]> git.proxmox.com Git - qemu.git/commitdiff
qemu-option: rename bool -> boolean
authorJuan Quintela <quintela@redhat.com>
Mon, 21 Sep 2009 11:08:34 +0000 (13:08 +0200)
committerAurelien Jarno <aurelien@aurel32.net>
Sat, 26 Sep 2009 19:34:13 +0000 (21:34 +0200)
We need this to allow the use of <stdbool.h>

Signed-off-by: Juan Quintela <quintela@redhat.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
qemu-option.c

index 9fe1f9547956c7027494952aaf1a59fbe1ecba4e..0892286564e5b94da51ee86d6eac84b91d57552f 100644 (file)
@@ -472,7 +472,7 @@ struct QemuOpt {
 
     QemuOptDesc  *desc;
     union {
-        int      bool;
+        int      boolean;
         uint64_t uint;
     } value;
 
@@ -512,7 +512,7 @@ int qemu_opt_get_bool(QemuOpts *opts, const char *name, int defval)
     if (opt == NULL)
         return defval;
     assert(opt->desc && opt->desc->type == QEMU_OPT_BOOL);
-    return opt->value.bool;
+    return opt->value.boolean;
 }
 
 uint64_t qemu_opt_get_number(QemuOpts *opts, const char *name, uint64_t defval)
@@ -544,7 +544,7 @@ static int qemu_opt_parse(QemuOpt *opt)
         /* nothing */
         return 0;
     case QEMU_OPT_BOOL:
-        return parse_option_bool(opt->name, opt->str, &opt->value.bool);
+        return parse_option_bool(opt->name, opt->str, &opt->value.boolean);
     case QEMU_OPT_NUMBER:
         return parse_option_number(opt->name, opt->str, &opt->value.uint);
     case QEMU_OPT_SIZE: