From 37487d682ed67a71cbd645a544fa617ed05032db Mon Sep 17 00:00:00 2001 From: Jonas Maebe <jonas@freepascal.org> Date: Sun, 4 Mar 2007 18:46:50 +0000 Subject: [PATCH] * 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 - --- rtl/linux/ptypes.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/linux/ptypes.inc b/rtl/linux/ptypes.inc index 59940985f2..9148677270 100644 --- a/rtl/linux/ptypes.inc +++ b/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;