Changeset 1351


Ignore:
Timestamp:
Apr 7, 2004, 6:24:06 PM (21 years ago)
Author:
bird
Message:

Fixed typos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GCC_3-2-2_BETA4_BRANCH/src/emx/src/lib/sys/__stat.c

    • Property cvs2svn:cvs-rev changed from 1.5.2.1 to 1.5.2.2
    r1350 r1351  
    4646    if (__pfnDosOpenL)
    4747    {
    48         rc = DosQueryPathInfo(pszPath, FIL_STANDARDL, &info, sizeof(info.fsts3L));
     48        rc = DosQueryPathInfo((PCSZ)pszPath, FIL_STANDARDL, &info, sizeof(info.fsts3L));
    4949        fLarge = 1;
    5050    }
    5151    else
    5252#endif
    53         rc = DosQueryPathInfo(pszPath, FIL_STANDARD, &info, sizeof(info.fsts3));
     53        rc = DosQueryPathInfo((PCSZ)pszPath, FIL_STANDARD, &info, sizeof(info.fsts3));
    5454    FS_RESTORE();
    5555    if (rc)
     
    9696        if (fLarge)
    9797        {
    98             pStat->st_size = info.fsf3L.cbFile;
     98            pStat->st_size = info.fsts3L.cbFile;
    9999            pStat->st_blocks = info.fsts3L.cbFileAlloc / S_BLKSIZE;
    100100        }
Note: See TracChangeset for help on using the changeset viewer.