From patchwork Mon Apr 30 13:36:56 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 155867 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 19CEFB6F62 for ; Mon, 30 Apr 2012 23:36:52 +1000 (EST) Received: from localhost ([::1]:58608 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SOqmX-0004JX-Eg for incoming@patchwork.ozlabs.org; Mon, 30 Apr 2012 09:36:49 -0400 Received: from eggs.gnu.org ([208.118.235.92]:42435) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SOqmO-0004JC-NP for qemu-devel@nongnu.org; Mon, 30 Apr 2012 09:36:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SOqmN-0001GL-48 for qemu-devel@nongnu.org; Mon, 30 Apr 2012 09:36:40 -0400 Received: from mx1.redhat.com ([209.132.183.28]:31967) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SOqmM-0001G8-Sl for qemu-devel@nongnu.org; Mon, 30 Apr 2012 09:36:39 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q3UDaaS2018767 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 30 Apr 2012 09:36:36 -0400 Received: from blackpad.lan.raisama.net (ovpn-116-58.ams2.redhat.com [10.36.116.58]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q3UDaUPd008515; Mon, 30 Apr 2012 09:36:30 -0400 Received: by blackpad.lan.raisama.net (Postfix, from userid 500) id 7D70B2005A6; Mon, 30 Apr 2012 10:36:56 -0300 (BRT) Date: Mon, 30 Apr 2012 10:36:56 -0300 From: Eduardo Habkost To: qemu-devel@nongnu.org Message-ID: <20120430133655.GA16951@otherpad.lan.raisama.net> References: <1335299581-25009-1-git-send-email-ehabkost@redhat.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1335299581-25009-1-git-send-email-ehabkost@redhat.com> X-Fnord: you can see the fnord User-Agent: Mutt/1.5.21 (2010-09-15) X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: libvir-list@redhat.com, Blue Swirl , Jiri Denemark Subject: [Qemu-devel] [PATCH qemu 7/6] vl.c: actually change defconfig variable to bool X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 --- vl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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;