mirror of
https://github.com/fadden/ciderpress.git
synced 2024-10-13 07:23:48 +00:00
Address gcc complaint
This commit is contained in:
parent
3d3c19d67f
commit
900b4c7757
@ -116,7 +116,7 @@ static DIError TestImage(DiskImg* pImg, DiskImg::SectorOrder imageOrder,
|
||||
dierr = kDIErrNone;
|
||||
break; /* allow it if earlier stuff was okay */
|
||||
}
|
||||
if (catTrack == sctBuf[2] & 0x7f && catSect == sctBuf[3] & 0x7f) {
|
||||
if (catTrack == (sctBuf[2] & 0x7f) && catSect == (sctBuf[3] & 0x7f)) {
|
||||
// current-sector values matched, check for the end-of-entry bits
|
||||
foundGood++;
|
||||
if (sctBuf[0x0f] == 0x8d && sctBuf[0x1f] == 0x8d &&
|
||||
|
Loading…
Reference in New Issue
Block a user