Browse Source

* tv_sec field of timeval is time_t (just for form, the actual type
is the same as clong which was the previous type)

git-svn-id: trunk@6713 -

Jonas Maebe 18 years ago
parent
commit
37487d682e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/linux/ptypes.inc

+ 1 - 1
rtl/linux/ptypes.inc

@@ -114,7 +114,7 @@ Type
     pSockLen = ^socklen_t;
 
   timeval     = packed record
-                 tv_sec,
+                 tv_sec:time_t;
                  tv_usec:clong;
                 end;
   ptimeval    = ^timeval;