* fix type of fourth parameter of msgrcv function

git-svn-id: trunk@16409 -
This commit is contained in:
pierre 2010-11-23 23:44:34 +00:00
parent c4cc9b59e0
commit 889caf5911

View File

@ -80,7 +80,7 @@ begin
msgsnd:=do_syscall(syscall_nr_msgsys,2, msqid, TSysParam(msgp), TSysParam(msgsz), msgflg);
end;
Function msgrcv(msqid:cint; msgp: PMSGBuf; msgsz: size_t; msgtyp:cint; msgflg:cint):cint;
Function msgrcv(msqid:cint; msgp: PMSGBuf; msgsz: size_t; msgtyp:clong; msgflg:cint):cint;
begin
msgrcv:=(do_syscall(syscall_nr_msgsys,3, msqid, TSysParam(msgp), msgsz, msgtyp, msgflg));
end;