Browse Source

fixed timeval record, HUGEINT -> LONGINT

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@6638 8c9fc860-2736-0410-a75d-ab315db34111
eth.guenter 9 years ago
parent
commit
122cca9a41
1 changed files with 2 additions and 2 deletions
  1. 2 2
      source/Darwin.I386.Unix.Mod

+ 2 - 2
source/Darwin.I386.Unix.Mod

@@ -209,8 +209,8 @@ TYPE
 			END;
 
 	Timeval* = RECORD
-				sec*		: HUGEINT;
-				usec*		: HUGEINT
+				sec*		: LONGINT;
+				usec*		: LONGINT
 			END;
 
 	TmPtr* = POINTER TO Tm;