Commit 74cef80c authored by Peter Crosthwaite's avatar Peter Crosthwaite Committed by Stefan Hajnoczi
Browse files

xilinx_axidma: Fix debug mode compile messages



Missing cast one one of the conditionally compiled printfs.

Signed-off-by: default avatarPeter Crosthwaite <peter.crosthwaite@xilinx.com>
Signed-off-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
parent 080251a4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -444,7 +444,7 @@ static void axidma_write(void *opaque, hwaddr addr,
            break;
        default:
            D(qemu_log("%s: ch=%d addr=" TARGET_FMT_plx " v=%x\n",
                  __func__, sid, addr * 4, value));
                  __func__, sid, addr * 4, (unsigned)value));
            s->regs[addr] = value;
            break;
    }