Browse Source

* always return an error in SysUtils.FileSetAttr on WASI - this function is not supported by the WASI API

Nikolay Nikolov 3 years ago
parent
commit
7f7c5785fc
1 changed files with 1 additions and 0 deletions
  1. 1 0
      rtl/wasi/sysutils.pp

+ 1 - 0
rtl/wasi/sysutils.pp

@@ -598,6 +598,7 @@ end;
 
 Function FileSetAttr (Const Filename : RawByteString; Attr: longint) : Longint;
 begin
+  Result:=-1;
 end;