Fixed several code style problems

This commit is contained in:
Ser01x
2021-07-26 09:24:54 +00:00
parent 053c6db9e1
commit e8c15866fa
2 changed files with 3 additions and 5 deletions

View File

@@ -1557,9 +1557,9 @@ scsi_inquiry_unmarshall_third_party_copy(struct scsi_task *task)
return NULL;
}
inq->qualifier = (task_get_uint8(task, 0) >> 5) & 0x07;
inq->device_type = task_get_uint8(task, 0) & 0x1f;
inq->pagecode = task_get_uint8(task, 1);
inq->qualifier = (task_get_uint8(task, 0) >> 5) & 0x07;
inq->device_type = task_get_uint8(task, 0) & 0x1f;
inq->pagecode = task_get_uint8(task, 1);
remaining = task_get_uint16(task, 2);
dptr = &task->datain.data[4];

View File

@@ -27,8 +27,6 @@
#include "scsi-lowlevel.h"
#include "iscsi-test-cu.h"
void
test_receive_copy_results_copy_status(void)
{