diff options
author | Gonglei | 2015-02-25 05:22:31 +0100 |
---|---|---|
committer | Michael Tokarev | 2015-03-10 06:15:33 +0100 |
commit | 81b07353c5e7ae9ae9360c357b7b4732b1cb03b4 (patch) | |
tree | 4ba7ef53b177ea8f14b79b59ea902d3835a32b29 /hw/ide/pci.c | |
parent | numa: remove superfluous '\n' around error_setg (diff) | |
download | qemu-81b07353c5e7ae9ae9360c357b7b4732b1cb03b4.tar.gz qemu-81b07353c5e7ae9ae9360c357b7b4732b1cb03b4.tar.xz qemu-81b07353c5e7ae9ae9360c357b7b4732b1cb03b4.zip |
Remove superfluous '\n' around error_report()
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'hw/ide/pci.c')
-rw-r--r-- | hw/ide/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ide/pci.c b/hw/ide/pci.c index e3f2054a90..913a9762d6 100644 --- a/hw/ide/pci.c +++ b/hw/ide/pci.c @@ -99,7 +99,7 @@ static int32_t bmdma_prepare_buf(IDEDMA *dma, int is_write) * This should accommodate the largest ATA transaction * for LBA48 (65,536 sectors) and 32K sector sizes. */ if (s->sg.size > INT32_MAX) { - error_report("IDE: sglist describes more than 2GiB.\n"); + error_report("IDE: sglist describes more than 2GiB."); break; } bm->cur_prd_addr += l; |