* filepos are int64

git-svn-id: trunk@43859 -
This commit is contained in:
marco 2020-01-04 18:37:17 +00:00
parent 73c6cab096
commit 51c31d1005

View File

@ -1,3 +1,4 @@
(**
Copyright (c) 2000-2010 by Stefan Heymann
@ -600,7 +601,7 @@ FUNCTION TTarArchive.FindNext (VAR DirRec : TTarDirRec) : BOOLEAN;
// The Stream pointer must point to the first byte of the tar header
VAR
Rec : ARRAY [0..RECORDSIZE-1] OF CHAR;
CurFilePos : INTEGER;
CurFilePos : int64;
Header : TTarHeader ABSOLUTE Rec;
I : INTEGER;
HeaderChkSum : WORD;