Browse Source

* Fix compile error for i386-linux

(cherry picked from commit 770c21c0ddcc948a6f84349a0c6b47c72c5b239c)
Michaël Van Canneyt 2 years ago
parent
commit
81b2bc87f4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/unix/sysutils.pp

+ 1 - 1
rtl/unix/sysutils.pp

@@ -612,7 +612,7 @@ begin
   flags:=0;
   if Not FollowLink then
     Flags:=AT_SYMLINK_NOFOLLOW;
-  if (statx(AT_FDCWD,PAnsiChar(FN),FLags,STATXMASK, stx)>=0 then
+  if (statx(AT_FDCWD,PAnsiChar(FN),FLags,STATXMASK, stx)>=0) then
     begin
     DateTime.Data:=stx;
     Exit(True);