From: Frode Solheim Date: Wed, 29 Jan 2014 23:52:38 +0000 (+0100) Subject: removed c[12] from logging statement (one c[..] too many). X-Git-Tag: 2800~34^2~1 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=9c3ccf8ff9af53bf0df5e49e3ee90d2a53064ae8;p=francis%2Fwinuae.git removed c[12] from logging statement (one c[..] too many). --- 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);