summaryrefslogtreecommitdiff
path: root/firmware/drivers/fat.c
diff options
context:
space:
mode:
authorJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-01-24 14:26:24 +0000
committerJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-01-24 14:26:24 +0000
commit34d2a71fdd3c14c980a57d5247dae9ac7586fe5b (patch)
tree17d4c0e0c52da037203e5b18e6b48403ab93a5f6 /firmware/drivers/fat.c
parent1265d03141839c32e562331a15ce4374dbb8360d (diff)
downloadrockbox-34d2a71fdd3c14c980a57d5247dae9ac7586fe5b.tar.gz
rockbox-34d2a71fdd3c14c980a57d5247dae9ac7586fe5b.zip
More int -> long
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5654 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers/fat.c')
-rw-r--r--firmware/drivers/fat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c
index 4c63498b8c..3adca5e864 100644
--- a/firmware/drivers/fat.c
+++ b/firmware/drivers/fat.c
@@ -199,7 +199,7 @@ struct bpb
199 int bpb_fatsz16; /* Number of used sectors per FAT structure */ 199 int bpb_fatsz16; /* Number of used sectors per FAT structure */
200 unsigned long bpb_totsec32; /* Number of sectors on the volume 200 unsigned long bpb_totsec32; /* Number of sectors on the volume
201 (new 32-bit) */ 201 (new 32-bit) */
202 int last_word; /* 0xAA55 */ 202 unsigned int last_word; /* 0xAA55 */
203 203
204 /**** FAT32 specific *****/ 204 /**** FAT32 specific *****/
205 long bpb_fatsz32; 205 long bpb_fatsz32;