summaryrefslogtreecommitdiff
path: root/firmware/include
diff options
context:
space:
mode:
authorJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-02-26 21:18:05 +0000
committerJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-02-26 21:18:05 +0000
commit5da99ed57079cb9100a0ae790ba2abc1496d0559 (patch)
tree2a86c92c68a7a2e5adeb795efc76a538ea902bdb /firmware/include
parent74a1fb8d835da39cb169cbc00588e96ababf25b5 (diff)
long policy
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6071 a1c6a512-1295-4272-9138-f99709370657
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 26ccd03ed3..948b30ffe2 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;