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

    r7d0d347 r8973acd  
    7575
    7676        nc = 0;
    77         clus = micons(fcp->de.bclust);
     77        clus = (int16_t)micon16(fcp->de.bclust);
    7878
    7979        if (clus) {
     
    173173        printf("  modefl     0x%04x\n", fcp->modefl);
    174174
    175         printf("  crtime     0x%04x",   micons(fcp->de.crtime));
    176         printf("  crdate     0x%04x\n", micons(fcp->de.crdate));
     175        printf("  crtime     0x%04x",   micon16(fcp->de.crtime));
     176        printf("  crdate     0x%04x\n", micon16(fcp->de.crdate));
    177177
    178178        printf("  asects   %8ld",       fcp->asects);
    179         printf("  flen     %8ld",       miconl(fcp->de.flen));
     179        printf("  flen     %8ld",       micon32(fcp->de.flen));
    180180        printf("  curlen   %8ld\n",     fcp->curlen);
    181181
    182         printf("  bclust   %8d",        micons(fcp->de.bclust));
     182        printf("  bclust   %8d",        micon16(fcp->de.bclust));
    183183        printf("  curcls   %8d",        fcp->curcls);
    184184        printf("  clsec    %8d\n",      fcp->clsec);
     
    198198*/
    199199
    200 void MapFAT(int8_t *fat, int16_t ncl, int16_t stops)
     200void MapFAT(uint8_t *fat, int16_t ncl, int16_t stops)
    201201{
    202202        register int16_t i;
Note: See TracChangeset for help on using the changeset viewer.