summaryrefslogtreecommitdiff
path: root/firmware/include
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include')
-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 26ccd03..948b30f 100644
--- a/firmware/include/dir.h
+++ b/firmware/include/dir.h
@@ -45,8 +45,8 @@
struct dirent {
unsigned char d_name[MAX_PATH];
int attribute;
- int size;
- int startcluster;
+ long size;
+ long startcluster;
unsigned short wrtdate; /* Last write date */
unsigned short wrttime; /* Last write time */
};
@@ -57,7 +57,7 @@ struct dirent {
typedef struct {
#ifndef SIMULATOR
bool busy;
- int startcluster;
+ long startcluster;
struct fat_dir fatdir;
struct fat_dir parent_dir;
struct dirent theent;