From 9c3ccf8ff9af53bf0df5e49e3ee90d2a53064ae8 Mon Sep 17 00:00:00 2001 From: Frode Solheim Date: Thu, 30 Jan 2014 00:52:38 +0100 Subject: [PATCH] removed c[12] from logging statement (one c[..] too many). --- gayle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gayle.cpp b/gayle.cpp index d1be1a2f..37b9a01c 100644 --- a/gayle.cpp +++ b/gayle.cpp @@ -841,7 +841,7 @@ static void do_packet_command (struct ide_hdf *ide) if (IDE_LOG > 0) { uae_u8 *c = ide->scsi->cmd; write_log (_T("ATASCSI %02x.%02x.%02x.%02x.%02x.%02x.%02x.%02x.%02x.%02x.%02x.%02x\n"), - c[0], c[1], c[2], c[3], c[4], c[5], c[6], c[7], c[8], c[9], c[10], c[11], c[12]); + c[0], c[1], c[2], c[3], c[4], c[5], c[6], c[7], c[8], c[9], c[10], c[11]); } ide->direction = 0; scsi_emulate_analyze (ide->scsi); -- 2.47.3