diff mbox

[qemu,7/6] vl.c: actually change defconfig variable to bool

Message ID 20120430133655.GA16951@otherpad.lan.raisama.net
State New
Headers show

Commit Message

Eduardo Habkost April 30, 2012, 1:36 p.m. UTC
I changed everything on my previous patch to change 'defconfig', but
forgot to actually change the variable data type.

As the incomplete change doesn't cause any issues or compiler warnings,
I am simply sending this additional patch instead of respinning the
whole series.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
 vl.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff mbox

Patch

diff --git a/vl.c b/vl.c
index 967b7e8..87db855 100644
--- a/vl.c
+++ b/vl.c
@@ -2279,7 +2279,7 @@  int main(int argc, char **argv, char **envp)
 #ifdef CONFIG_VNC
     int show_vnc_port = 0;
 #endif
-    int defconfig = true;
+    bool defconfig = true;
     bool userconfig = true;
     const char *log_mask = NULL;
     const char *log_file = NULL;