Changeset 1351
- Timestamp:
- Apr 7, 2004, 6:24:06 PM (21 years ago)
- 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
to1.5.2.2
r1350 r1351 46 46 if (__pfnDosOpenL) 47 47 { 48 rc = DosQueryPathInfo( pszPath, FIL_STANDARDL, &info, sizeof(info.fsts3L));48 rc = DosQueryPathInfo((PCSZ)pszPath, FIL_STANDARDL, &info, sizeof(info.fsts3L)); 49 49 fLarge = 1; 50 50 } 51 51 else 52 52 #endif 53 rc = DosQueryPathInfo( pszPath, FIL_STANDARD, &info, sizeof(info.fsts3));53 rc = DosQueryPathInfo((PCSZ)pszPath, FIL_STANDARD, &info, sizeof(info.fsts3)); 54 54 FS_RESTORE(); 55 55 if (rc) … … 96 96 if (fLarge) 97 97 { 98 pStat->st_size = info.fs f3L.cbFile;98 pStat->st_size = info.fsts3L.cbFile; 99 99 pStat->st_blocks = info.fsts3L.cbFileAlloc / S_BLKSIZE; 100 100 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.