summaryrefslogtreecommitdiff
path: root/firmware/common
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/common')
-rw-r--r--firmware/common/dir.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/common/dir.h b/firmware/common/dir.h
index 1aa3476fe0..0e0dbfb4b5 100644
--- a/firmware/common/dir.h
+++ b/firmware/common/dir.h
@@ -25,7 +25,9 @@ typdef struct {
} DIR;
struct dirent {
- int d_name[256];
+ unsigned char d_name[256];
+ int attribute;
+ int size;
};
extern DIR* opendir(char* name);