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

    r7d0d347 r8973acd  
    1616int16_t fseek(FILE *fp, int32_t pos, int16_t mode)
    1717{
    18         register int16_t lr;
     18        register int32_t lr;
    1919
    2020        if (fp->_flags & _DIRTY) {
     
    3030
    3131        fp->_bp = fp->_bend = NULL;
    32         fp->_flags &= ~_EOF;
     32        fp->_flags = (uint8_t)(fp->_flags & ~_EOF);
    3333
    3434        lr = lseek(fp->_unit, pos, mode);
Note: See TracChangeset for help on using the changeset viewer.