浏览代码

* 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 年之前
父节点
当前提交
37487d682e
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;