mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-22 14:53:26 +02:00
* fixed breakage
git-svn-id: trunk@9162 -
This commit is contained in:
parent
af9e8b489c
commit
441bbdf677
@ -48,8 +48,7 @@ begin
|
||||
{$else}
|
||||
if do_syscall(syscall_nr__llseek,tsysparam(fd),
|
||||
{$ifdef FPC_ABI_EABI} 0, { align parameters as required with dummy } {$endif FPC_ABI_EABI}
|
||||
{$ifdef FPC_BIG_ENDIAN} tsysparam(hi(offset)),tsysparam(lo(offset)),{$endif}
|
||||
{$ifdef FPC_LITTLE_ENDIAN} tsysparam(lo(offset)),tsysparam(hi(offset)),{$endif}
|
||||
tsysparam(hi(offset)),tsysparam(lo(offset)),
|
||||
tsysparam(@result), tsysparam(whence)) = -1 then
|
||||
result:=off_t(-1);
|
||||
{$endif}
|
||||
@ -307,7 +306,7 @@ begin
|
||||
{$else}
|
||||
Fpftruncate:=Do_syscall(syscall_nr_ftruncate64,TSysParam(fd),
|
||||
{$ifdef FPC_ABI_EABI} 0, { align parameters as required with dummy } {$endif FPC_ABI_EABI}
|
||||
{$ifdef FPC_BIG_ENDIAN} tsysparam(hi(flength)),tsysparam(lo(flength)),{$endif}
|
||||
{$ifdef FPC_BIG_ENDIAN} tsysparam(hi(flength)),tsysparam(lo(flength)){$endif}
|
||||
{$ifdef FPC_LITTLE_ENDIAN} tsysparam(lo(flength)),tsysparam(hi(flength)){$endif}
|
||||
);
|
||||
{$endif}
|
||||
|
Loading…
Reference in New Issue
Block a user