mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 07:28:26 +02:00
+ add missing semicolon, resolves #36868
git-svn-id: trunk@44578 -
(cherry picked from commit e32027c8d3
)
This commit is contained in:
parent
4f31b7138c
commit
2e750c3f1c
@ -623,7 +623,7 @@ end;
|
||||
function epoll_create(size: cint): cint;
|
||||
begin
|
||||
{$if defined(generic_linux_syscalls)}
|
||||
epoll_create := do_syscall(syscall_nr_epoll_create1,0)
|
||||
epoll_create := do_syscall(syscall_nr_epoll_create1,0);
|
||||
{$else}
|
||||
epoll_create := do_syscall(syscall_nr_epoll_create,tsysparam(size));
|
||||
{$endif}
|
||||
|
Loading…
Reference in New Issue
Block a user