Changeset ea232f9 in buchla-68k


Ignore:
Timestamp:
07/16/2017 11:03:01 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
99cac86
Parents:
8973acd
Message:

Format string fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcio/clusmap.c

    r8973acd rea232f9  
    103103        bunused = alsize - bused;
    104104
    105         printf("\nFAT cluster count=%d, asects=%ld\n", nc, fcp->asects);
     105        printf("\nFAT cluster count=%d, asects=%d\n", nc, fcp->asects);
    106106        printf("%ld bytes allocated, %ld bytes used", alsize, bused);
    107107
     
    176176        printf("  crdate     0x%04x\n", micon16(fcp->de.crdate));
    177177
    178         printf("  asects   %8ld",       fcp->asects);
     178        printf("  asects   %8d",        fcp->asects);
    179179        printf("  flen     %8ld",       micon32(fcp->de.flen));
    180180        printf("  curlen   %8ld\n",     fcp->curlen);
     
    184184        printf("  clsec    %8d\n",      fcp->clsec);
    185185
    186         printf("  curlsn   %8ld",       fcp->curlsn);
    187         printf("  curdsn   %8ld",       fcp->curdsn);
     186        printf("  curlsn   %8d",        fcp->curlsn);
     187        printf("  curdsn   %8d",        fcp->curdsn);
    188188        printf("  offset   %8d\n",      fcp->offset);
    189189
Note: See TracChangeset for help on using the changeset viewer.