Changeset 8973acd in buchla-68k for libcio/writern.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/writern.c

    r7d0d347 r8973acd  
    3030        int32_t brc;            /* bios return code */
    3131
    32         if (sv = _seek(fcp)) {          /* try to find the sector we want */
     32        if ((sv = _seek(fcp))) {                /* try to find the sector we want */
    3333
    3434                if (sv < 0) {                   /* seek error ? */
     
    6767        /* write the sector */
    6868
    69         if (brc = BIOS(B_RDWR, 1, buf, 1, (int16_t)fcp->curdsn, 0)) {
     69        if ((brc = BIOS(B_RDWR, 1, buf, 1, (int16_t)fcp->curdsn, 0))) {
    7070
    7171#if DEBUGIT
Note: See TracChangeset for help on using the changeset viewer.