Fix a small oversight

This commit is contained in:
theoddone33
2001-04-22 17:18:15 +00:00
parent 30adad37c6
commit 23742cd694
2 changed files with 3 additions and 3 deletions

View File

@@ -230,7 +230,7 @@ DWORD ZFileTell()
{
int res = 0;
if (TextFile) {
res = gztell(FILEHANDLE[ZFileTellHandle]);
res = ftell(FILEHANDLE[ZFileTellHandle]);
if (res == -1) fprintf(stderr, "Oups!! gzTell\n");
return(res);
} else return gztell(FILEHANDLE[ZFileTellHandle]);