Explorar o código

Fixed SkipBytes

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@7630 8c9fc860-2736-0410-a75d-ab315db34111
eth.metacore %!s(int64=7) %!d(string=hai) anos
pai
achega
cf6b099bf9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      source/Streams64.Mod

+ 1 - 1
source/Streams64.Mod

@@ -647,7 +647,7 @@ TYPE
 		END Bytes;
 
 	(** Skip n bytes on the reader. *)
-		PROCEDURE SkipBytes*( n: LONGINT );
+		PROCEDURE SkipBytes*( n: HUGEINT );
 		VAR ch: CHAR;
 		BEGIN
 			WHILE n > 0 DO ch := Get();  DEC( n ) END