From 4e605fb7643902e82de03ef4b43aaa166c30a42f Mon Sep 17 00:00:00 2001 From: Nikolay Nikolov Date: Tue, 12 Oct 2021 07:08:32 +0300 Subject: [PATCH] + dummy implementation of dos.SetFAttr for WASI, based on the Unix version --- rtl/wasi/dos.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtl/wasi/dos.pp b/rtl/wasi/dos.pp index 810a6a5847..dc1216ea58 100644 --- a/rtl/wasi/dos.pp +++ b/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;