From 81b2bc87f491bfc44df2f24a9ddbac2b751f12c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Van=20Canneyt?= Date: Sat, 21 Jan 2023 20:21:29 +0100 Subject: [PATCH] * Fix compile error for i386-linux (cherry picked from commit 770c21c0ddcc948a6f84349a0c6b47c72c5b239c) --- rtl/unix/sysutils.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/unix/sysutils.pp b/rtl/unix/sysutils.pp index abde712e9c..65e7bdc2da 100644 --- a/rtl/unix/sysutils.pp +++ b/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);