summaryrefslogtreecommitdiff
path: root/firmware/drivers/fat.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/fat.h')
-rw-r--r--firmware/drivers/fat.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/firmware/drivers/fat.h b/firmware/drivers/fat.h
index 4e5397f806..f05acf3c8f 100644
--- a/firmware/drivers/fat.h
+++ b/firmware/drivers/fat.h
@@ -59,11 +59,8 @@ struct fat_file
59 59
60struct fat_dir 60struct fat_dir
61{ 61{
62 int entry; 62 unsigned int entry;
63 int cached_sec; 63 int sector;
64 int num_sec;
65 unsigned char cached_buf[SECTOR_SIZE];
66 int startcluster;
67 struct fat_file file; 64 struct fat_file file;
68}; 65};
69 66