From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MP1lm-0007p8-3b for qemu-devel@nongnu.org; Thu, 09 Jul 2009 18:07:10 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MP1lh-0007mu-CO for qemu-devel@nongnu.org; Thu, 09 Jul 2009 18:07:09 -0400 Received: from [199.232.76.173] (port=52053 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MP1lh-0007mr-72 for qemu-devel@nongnu.org; Thu, 09 Jul 2009 18:07:05 -0400 Received: from mx2.redhat.com ([66.187.237.31]:34138) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MP1lg-0002zF-Nx for qemu-devel@nongnu.org; Thu, 09 Jul 2009 18:07:04 -0400 Message-ID: <4A5669FE.2040105@redhat.com> Date: Fri, 10 Jul 2009 00:06:54 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1246596159-16126-1-git-send-email-yamahata@valinux.co.jp> <1246596159-16126-5-git-send-email-yamahata@valinux.co.jp> <4A564089.8020207@codemonkey.ws> In-Reply-To: <4A564089.8020207@codemonkey.ws> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: [PATCH 4/6] ioport: remove some #ifdef DEBUG_UNUSED_IOPORT. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Isaku Yamahata , qemu-devel@nongnu.org >> +#ifdef DEBUG_UNUSED_IOPORT >> +# define LOG_UNUSED_IOPORT(...) fprintf(stderr, __VA_ARGS__) >> +#else > > #define LOG_UNUSED_IOPORT(fmt, ...) fprintf(stderr, ## __VA_ARGS__) Actually #define LOG_UNUSED_IOPORT(fmt, ...) fprintf(stderr, fmt, ## __VA_ARGS__) :-) Paolo