From: plugwash <plugwash@p10link.net>
Date: Sun, 1 Nov 2009 04:42:13 +0000 (+0000)
Subject: fix an error that prevented compilation with more recent fpc
X-Git-Url: http://www.lcore.org/git/lcore.git/commitdiff_plain/842bb1621ab7617fe2f47da159d89ac513fbd6e2

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
---

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}