diff options
| author | 2017-12-20 08:54:27 +0700 | |
|---|---|---|
| committer | 2017-12-20 08:54:27 +0700 | |
| commit | 0640e31c16119590fdf73da605875fbd9c2ee773 (patch) | |
| tree | efa7e7d82544b77c04625c5a5e5e11d3fc0a4ea9 /src | |
| parent | 09a8ca238e9b3823e3300bee0178f9b9395b1947 (diff) | |
formatting (nw)
Diffstat (limited to 'src')
| -rw-r--r-- | src/devices/machine/nscsi_hd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/nscsi_hd.cpp b/src/devices/machine/nscsi_hd.cpp index e04dd881f83..36b6ed3f4bb 100644 --- a/src/devices/machine/nscsi_hd.cpp +++ b/src/devices/machine/nscsi_hd.cpp @@ -92,7 +92,7 @@ void nscsi_harddisk_device::scsi_put_data(int id, int pos, uint8_t data) void nscsi_harddisk_device::scsi_command() { - if ((VERBOSE & LOG_COMMAND) && scsi_cmdbuf[0] != SC_READ_6) + if((VERBOSE & LOG_COMMAND) && scsi_cmdbuf[0] != SC_READ_6) { LOGMASKED(LOG_COMMAND, "%02x %02x %02x %02x %02x %02x\n", scsi_cmdbuf[0], scsi_cmdbuf[1], scsi_cmdbuf[2], @@ -150,7 +150,7 @@ void nscsi_harddisk_device::scsi_command() scsi_cmdbuf[1] = 0x00; // media is not removable scsi_cmdbuf[2] = 0x05; // device complies with SPC-3 standard scsi_cmdbuf[3] = 0x01; // response data format = CCS - if (m_inquiry_data.empty()) + if(m_inquiry_data.empty()) { LOG("IDNT tag not found in chd metadata, using default inquiry data\n"); |
