Skip to content

Commit

Permalink
Resolve FPC 64-bit compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
toleressea committed Dec 10, 2018
1 parent f4cc4eb commit 18b7ee8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion zmqapi.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1902,7 +1902,11 @@ procedure TZMQSocket.RegisterMonitor( proc: TZMQMonitorProc; events: TZMQMonitor
{$ifdef UNIX}
tid: QWord;
{$else}
tid: Cardinal;
{$ifdef FPC}
tid: SizeUInt;
{$else}
tid: Cardinal;
{$endif}
{$endif}
begin
if fMonitorRec <> nil then
Expand Down

0 comments on commit 18b7ee8

Please sign in to comment.