mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 04:39:34 +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;
|
function epoll_create(size: cint): cint;
|
||||||
begin
|
begin
|
||||||
{$if defined(generic_linux_syscalls)}
|
{$if defined(generic_linux_syscalls)}
|
||||||
epoll_create := do_syscall(syscall_nr_epoll_create1,0)
|
epoll_create := do_syscall(syscall_nr_epoll_create1,0);
|
||||||
{$else}
|
{$else}
|
||||||
epoll_create := do_syscall(syscall_nr_epoll_create,tsysparam(size));
|
epoll_create := do_syscall(syscall_nr_epoll_create,tsysparam(size));
|
||||||
{$endif}
|
{$endif}
|
||||||
|
Loading…
Reference in New Issue
Block a user