* fix 64bit epoll "special" packing

git-svn-id: trunk@4292 -
This commit is contained in:
Almindor 2006-07-25 11:44:24 +00:00
parent 69790fbdc9
commit 3d1370bf8b

View File

@ -127,7 +127,7 @@ type
TEPoll_Data = Epoll_Data;
PEPoll_Data = ^Epoll_Data;
EPoll_Event = record
EPoll_Event = {$ifdef cpu64} packed {$endif} record
Events: cuint32;
Data : TEpoll_Data;
end;