Use ftello64 instead of ftello to handle fseeko64.

This commit is contained in:
Sam Hocevar 2009-11-20 22:47:31 +00:00 committed by sam
parent 54c5a08770
commit ec77adde22

View File

@ -292,7 +292,7 @@ int NEW(fseeko)(FILE *stream, off_t offset, int whence)
#if defined HAVE_FSEEKO64
int NEW(fseeko64)(FILE *stream, off64_t offset, int whence)
{
int ret; FSEEK(fseeko64, ftello); return ret;
int ret; FSEEK(fseeko64, ftello64); return ret;
}
#endif