Changeset 8973acd in buchla-68k for libcio/blkrd.c


Ignore:
Timestamp:
07/15/2017 03:12:10 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
ea232f9
Parents:
7d0d347
Message:

No more warnings in libcio.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcio/blkrd.c

    r7d0d347 r8973acd  
    7070        if ((track NE _b_trak) OR (side NE _b_side)) {  /* track in buffer ? */
    7171
    72                 if (brc = BIOS(B_RDWR, 0, &_b_tbuf, _thebpb->dspt, _b_tsec, 0)) {
     72                if ((brc = BIOS(B_RDWR, 0, &_b_tbuf, _thebpb->dspt, _b_tsec, 0))) {
    7373
    7474                        _b_trak = -1;
     
    111111
    112112#if     TBUFFER
    113                 if (brc = _secrd(buf, (int16_t)fcp->curdsn)) {
     113                if ((brc = _secrd(buf, (int16_t)fcp->curdsn))) {
    114114#else
    115115                if (brc = BIOS(B_RDWR, 0, buf, 1, (short)fcp->curdsn, 0)) {
     
    121121                }
    122122
    123                 if (rb = _nsic(fcp, _thebpb, _thefat)) {  /* find next sector */
     123                if ((rb = _nsic(fcp, _thebpb, _thefat))) {  /* find next sector */
    124124
    125125                        if (rb EQ -1)           /* see if we had an error */
Note: See TracChangeset for help on using the changeset viewer.