summaryrefslogtreecommitdiff
path: root/firmware/include/dir.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/dir.h')
-rw-r--r--firmware/include/dir.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/include/dir.h b/firmware/include/dir.h
index 26ccd03ed3..948b30ffe2 100644
--- a/firmware/include/dir.h
+++ b/firmware/include/dir.h
@@ -45,8 +45,8 @@
45struct dirent { 45struct dirent {
46 unsigned char d_name[MAX_PATH]; 46 unsigned char d_name[MAX_PATH];
47 int attribute; 47 int attribute;
48 int size; 48 long size;
49 int startcluster; 49 long startcluster;
50 unsigned short wrtdate; /* Last write date */ 50 unsigned short wrtdate; /* Last write date */
51 unsigned short wrttime; /* Last write time */ 51 unsigned short wrttime; /* Last write time */
52}; 52};
@@ -57,7 +57,7 @@ struct dirent {
57typedef struct { 57typedef struct {
58#ifndef SIMULATOR 58#ifndef SIMULATOR
59 bool busy; 59 bool busy;
60 int startcluster; 60 long startcluster;
61 struct fat_dir fatdir; 61 struct fat_dir fatdir;
62 struct fat_dir parent_dir; 62 struct fat_dir parent_dir;
63 struct dirent theent; 63 struct dirent theent;