summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 1aa3476..0e0dbfb 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);