Commit 3adae656c7da952ee9090878169b430ba69c9a8e
1 parent
12d96138
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 <ryanh@us.ibm.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5760 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
hw/lsi53c895a.c
... | ... | @@ -482,7 +482,7 @@ static void lsi_do_dma(LSIState *s, int out) |
482 | 482 | else if (s->sbms) |
483 | 483 | addr |= ((uint64_t)s->sbms << 32); |
484 | 484 | |
485 | - DPRINTF("DMA addr=0x%" TARGET_FMT_plx " len=%d\n", addr, count); | |
485 | + DPRINTF("DMA addr=0x" TARGET_FMT_plx " len=%d\n", addr, count); | |
486 | 486 | s->csbc += count; |
487 | 487 | s->dnad += count; |
488 | 488 | s->dbc -= count; | ... | ... |