From 39c3339b38b4adce642ba9a0013e4f3eba0919ee Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Wed, 18 Mar 2026 13:18:54 +0100 Subject: [PATCH] Allow non-const ACL. Signed-off-by: Pol Henarejos --- src/fs/file.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs/file.h b/src/fs/file.h index fe98ccd..97eec9f 100644 --- a/src/fs/file.h +++ b/src/fs/file.h @@ -78,7 +78,7 @@ typedef struct file { const uint8_t *name; uint8_t *data; //should include 2 bytes len at begining const uint16_t fid; - const uint8_t acl[7]; + uint8_t acl[7]; const uint8_t parent; //entry number in the whole table!! const uint8_t type; const uint8_t ef_structure;