Commit 02fa69b6 authored by Blue Swirl's avatar Blue Swirl
Browse files

scsi-disk: fix DPRINTF



The variable 'status' does not exist anymore, adjust DPRINTF
accordingly.

Signed-off-by: default avatarBlue Swirl <blauwirbel@gmail.com>
parent 871708bf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -86,8 +86,8 @@ static void scsi_free_request(SCSIRequest *req)
/* Helper function for command completion with sense.  */
static void scsi_check_condition(SCSIDiskReq *r, SCSISense sense)
{
    DPRINTF("Command complete tag=0x%x status=%d sense=%d/%d/%d\n",
            r->req.tag, status, sense.key, sense.asc, sense.ascq);
    DPRINTF("Command complete tag=0x%x sense=%d/%d/%d\n",
            r->req.tag, sense.key, sense.asc, sense.ascq);
    scsi_req_build_sense(&r->req, sense);
    scsi_req_complete(&r->req, CHECK_CONDITION);
}