Changeset 888 for cpp/common/nonstd_stdio.cpp
- Timestamp:
- 07/22/19 01:15:38 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/common/nonstd_stdio.cpp
r878 r888 119 119 int getFileSize(MFILE *f) 120 120 { 121 int saved_pos = mftell(f);121 int saved_pos = (int)mftell(f); 122 122 mfseek(f, 0, SEEK_END); 123 int size = mftell(f);123 int size = (int)mftell(f); 124 124 mfseek(f, saved_pos, SEEK_SET); 125 125 return size;
Note: See TracChangeset
for help on using the changeset viewer.