From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:50172) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QN2NQ-0002Dm-Il for qemu-devel@nongnu.org; Thu, 19 May 2011 08:30:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QN2NP-0003sR-HL for qemu-devel@nongnu.org; Thu, 19 May 2011 08:30:52 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43116) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QN2NP-0003sL-AH for qemu-devel@nongnu.org; Thu, 19 May 2011 08:30:51 -0400 From: Kevin Wolf Date: Thu, 19 May 2011 14:33:15 +0200 Message-Id: <1305808412-16994-2-git-send-email-kwolf@redhat.com> In-Reply-To: <1305808412-16994-1-git-send-email-kwolf@redhat.com> References: <1305808412-16994-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 01/18] ide: cleanup warnings List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org From: Andrea Arcangeli Add \n. Signed-off-by: Andrea Arcangeli Signed-off-by: Kevin Wolf --- hw/ide/pci.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/ide/pci.c b/hw/ide/pci.c index 65cb56c..f5ac932 100644 --- a/hw/ide/pci.c +++ b/hw/ide/pci.c @@ -298,9 +298,9 @@ void bmdma_cmd_writeb(void *opaque, uint32_t addr, uint32_t val) qemu_aio_flush(); #ifdef DEBUG_IDE if (bm->bus->dma->aiocb) - printf("ide_dma_cancel: aiocb still pending"); + printf("ide_dma_cancel: aiocb still pending\n"); if (bm->status & BM_STATUS_DMAING) - printf("ide_dma_cancel: BM_STATUS_DMAING still pending"); + printf("ide_dma_cancel: BM_STATUS_DMAING still pending\n"); #endif } } else { -- 1.7.2.3