From 842bb1621ab7617fe2f47da159d89ac513fbd6e2 Mon Sep 17 00:00:00 2001 From: plugwash Date: Sun, 1 Nov 2009 04:42:13 +0000 Subject: [PATCH] fix an error that prevented compilation with more recent fpc (that'll teach me not to assume that the fix I made for build with 1.0.x is harmless) git-svn-id: file:///svnroot/lcore/trunk@58 b1de8a11-f9be-4011-bde0-cc7ace90066a --- ltimevalstuff.pas | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ltimevalstuff.pas b/ltimevalstuff.pas index bf9767e..a6a3158 100755 --- a/ltimevalstuff.pas +++ b/ltimevalstuff.pas @@ -16,7 +16,7 @@ interface {$ifdef ver1_0} uses linux; {$else} - uses baseunix,unix; + uses baseunix,unix,unixutil; {$endif} {$endif} @@ -33,8 +33,8 @@ const {$ifdef ver1_0} tv_invalidtimebig : ttimeval = (sec:maxlongint;usec:maxlongint); {$else} - tv_invalidtimebig : ttimeval = (tv_sec:maxlongint;tv_usec:maxlongint); - {$endif} + tv_invalidtimebig : ttimeval = (tv_sec:maxlongint;tv_usec:maxlongint); + {$endif} implementation {$i unixstuff.inc} -- 2.30.2