Revision 02fa69b6 hw/scsi-disk.c

b/hw/scsi-disk.c
86 86
/* Helper function for command completion with sense.  */
87 87
static void scsi_check_condition(SCSIDiskReq *r, SCSISense sense)
88 88
{
89
    DPRINTF("Command complete tag=0x%x status=%d sense=%d/%d/%d\n",
90
            r->req.tag, status, sense.key, sense.asc, sense.ascq);
89
    DPRINTF("Command complete tag=0x%x sense=%d/%d/%d\n",
90
            r->req.tag, sense.key, sense.asc, sense.ascq);
91 91
    scsi_req_build_sense(&r->req, sense);
92 92
    scsi_req_complete(&r->req, CHECK_CONDITION);
93 93
}

Also available in: Unified diff