From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MP1mY-0008Nu-7S for qemu-devel@nongnu.org; Thu, 09 Jul 2009 18:07:58 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MP1mT-0008LJ-7I for qemu-devel@nongnu.org; Thu, 09 Jul 2009 18:07:57 -0400 Received: from [199.232.76.173] (port=52062 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MP1mS-0008L3-RU for qemu-devel@nongnu.org; Thu, 09 Jul 2009 18:07:52 -0400 Received: from mail-px0-f201.google.com ([209.85.216.201]:56768) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MP1mS-00036p-Fi for qemu-devel@nongnu.org; Thu, 09 Jul 2009 18:07:52 -0400 Received: by pxi39 with SMTP id 39so269281pxi.4 for ; Thu, 09 Jul 2009 15:07:51 -0700 (PDT) Message-ID: <4A566A34.10206@codemonkey.ws> Date: Thu, 09 Jul 2009 17:07:48 -0500 From: Anthony Liguori 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> <4A5669FE.2040105@redhat.com> In-Reply-To: <4A5669FE.2040105@redhat.com> 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: Paolo Bonzini Cc: Isaku Yamahata , qemu-devel@nongnu.org Paolo Bonzini wrote: > >>> +#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__) > > :-) Indeed :-) Regards, Anthony Liguori > Paolo