From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L3Cfi-0004nq-7b for qemu-devel@nongnu.org; Thu, 20 Nov 2008 11:46:26 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L3Cff-0004nB-Qx for qemu-devel@nongnu.org; Thu, 20 Nov 2008 11:46:24 -0500 Received: from [199.232.76.173] (port=48480 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L3Cff-0004n8-Kx for qemu-devel@nongnu.org; Thu, 20 Nov 2008 11:46:23 -0500 Received: from savannah.gnu.org ([199.232.41.3]:52217 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1L3Cff-00023D-Ij for qemu-devel@nongnu.org; Thu, 20 Nov 2008 11:46:23 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1L3Cfe-0007sJ-Js for qemu-devel@nongnu.org; Thu, 20 Nov 2008 16:46:22 +0000 Received: from aliguori by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1L3Cfe-0007sD-1s for qemu-devel@nongnu.org; Thu, 20 Nov 2008 16:46:22 +0000 MIME-Version: 1.0 Errors-To: aliguori Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Anthony Liguori Message-Id: Date: Thu, 20 Nov 2008 16:46:22 +0000 Subject: [Qemu-devel] [5760] Fix typo when using TARGET_FMT_plx and LSI_DEBUG (Ryan Harper) 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 Revision: 5760 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5760 Author: aliguori Date: 2008-11-20 16:46:21 +0000 (Thu, 20 Nov 2008) Log Message: ----------- Fix typo when using TARGET_FMT_plx and LSI_DEBUG (Ryan Harper) TARGET_FMT_plx includes a % for you. This fixes the following warning when compiling with LSI_DEBUG enabled. Signed-off-by: Ryan Harper Signed-off-by: Anthony Liguori Modified Paths: -------------- trunk/hw/lsi53c895a.c Modified: trunk/hw/lsi53c895a.c =================================================================== --- trunk/hw/lsi53c895a.c 2008-11-20 06:41:29 UTC (rev 5759) +++ trunk/hw/lsi53c895a.c 2008-11-20 16:46:21 UTC (rev 5760) @@ -482,7 +482,7 @@ else if (s->sbms) addr |= ((uint64_t)s->sbms << 32); - DPRINTF("DMA addr=0x%" TARGET_FMT_plx " len=%d\n", addr, count); + DPRINTF("DMA addr=0x" TARGET_FMT_plx " len=%d\n", addr, count); s->csbc += count; s->dnad += count; s->dbc -= count;