Browse Source

+ dummy implementation of dos.SetFAttr for WASI, based on the Unix version

Nikolay Nikolov 3 years ago
parent
commit
4e605fb764
1 changed files with 2 additions and 2 deletions
  1. 2 2
      rtl/wasi/dos.pp

+ 2 - 2
rtl/wasi/dos.pp

@@ -864,10 +864,10 @@ End;
 
 Procedure setfattr (var f;attr : word);
 Begin
-(*  {! No Unix equivalent !}
+  {! No WASI equivalent !}
   { Fail for setting VolumeId }
   if (attr and VolumeID)<>0 then
-   doserror:=5;*)
+   doserror:=5;
 End;