Minor fixes

This commit is contained in:
Jack Andersen
2016-01-25 20:39:49 -10:00
parent 02a7b95606
commit 528b5cad0c
3 changed files with 13 additions and 9 deletions

View File

@@ -30,7 +30,7 @@ public:
if (!fp)
return 0;
FSeek(fp, 0, SEEK_END);
uint64_t result = ftello(fp);
uint64_t result = FTell(fp);
fclose(fp);
return result;
}