From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LPay6-00050E-0q for qemu-devel@nongnu.org; Wed, 21 Jan 2009 06:09:58 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LPay1-0004wS-SP for qemu-devel@nongnu.org; Wed, 21 Jan 2009 06:09:57 -0500 Received: from [199.232.76.173] (port=52662 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LPay1-0004wP-Ot for qemu-devel@nongnu.org; Wed, 21 Jan 2009 06:09:53 -0500 Received: from smtp.eu.citrix.com ([62.200.22.115]:3347) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LPay1-0003Uy-CS for qemu-devel@nongnu.org; Wed, 21 Jan 2009 06:09:53 -0500 Message-ID: <49770188.5020806@eu.citrix.com> Date: Wed, 21 Jan 2009 11:05:44 +0000 From: Stefano Stabellini MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH] Fix a compile error when none of the defines is hit References: <1232531266-5295-1-git-send-email-yu.liu@freescale.com> In-Reply-To: <1232531266-5295-1-git-send-email-yu.liu@freescale.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Liu Yu Liu Yu wrote: > Signed-off-by: Liu Yu Acked-by: Stefano Stabellini > --- > vl.c | 2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/vl.c b/vl.c > index 63d954b..1bf13c0 100644 > --- a/vl.c > +++ b/vl.c > @@ -5548,6 +5548,8 @@ int main(int argc, char **argv, char **envp) > sdl_display_init(ds, full_screen, no_frame); > #elif defined(CONFIG_COCOA) > cocoa_display_init(ds, full_screen); > +#else > + ; > #endif > } > }