diff options
author | 2019-07-18 11:06:50 +0700 | |
---|---|---|
committer | 2019-07-18 11:06:50 +0700 | |
commit | 8039ba8226757c19670c6da5f9f54bf13346fabb (patch) | |
tree | 398a19765fb2ccf3d34be17d476529cd89ccc086 /src/devices/bus/nscsi/hd.cpp | |
parent | 0d4e2c9ff13f7d2db7242c843d6c9b1e9c519a96 (diff) |
nscsi_hd: logging (nw)
Diffstat (limited to 'src/devices/bus/nscsi/hd.cpp')
-rw-r--r-- | src/devices/bus/nscsi/hd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/nscsi/hd.cpp b/src/devices/bus/nscsi/hd.cpp index f2639673a92..6c6543b409c 100644 --- a/src/devices/bus/nscsi/hd.cpp +++ b/src/devices/bus/nscsi/hd.cpp @@ -401,7 +401,7 @@ void nscsi_harddisk_device::scsi_command() break; case SC_RECIEVE_DIAG_RES: { - LOG("command RECIEVE DIAGNOSTICS RESULTS"); + LOG("command RECIEVE DIAGNOSTICS RESULTS\n"); int size = (scsi_cmdbuf[3] << 8) | scsi_cmdbuf[4]; int pos = 0; scsi_cmdbuf[pos++] = 0; @@ -419,7 +419,7 @@ void nscsi_harddisk_device::scsi_command() } case SC_SEND_DIAGNOSTICS: { - LOG("command SEND DIAGNOSTICS"); + LOG("command SEND DIAGNOSTICS\n"); int size = (scsi_cmdbuf[3] << 8) | scsi_cmdbuf[4]; if(scsi_cmdbuf[1] & 4) { // Self-test |