diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-05-30 19:49:15 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-05-30 19:49:15 +0000 |
| commit | eacbef9466197fe4b4344fc51a0e31dc19cbcb05 (patch) | |
| tree | 6ae8b33988cf1888e709408b4ebfa0015b83cc5f | |
| parent | 827cee37d7c005fc7a0f608c1f2b9ea4d3c4f360 (diff) | |
| download | rockbox-eacbef9466197fe4b4344fc51a0e31dc19cbcb05.zip rockbox-eacbef9466197fe4b4344fc51a0e31dc19cbcb05.tar.gz rockbox-eacbef9466197fe4b4344fc51a0e31dc19cbcb05.tar.bz2 rockbox-eacbef9466197fe4b4344fc51a0e31dc19cbcb05.tar.xz | |
Umm, bpb must be static to be local :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@833 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/drivers/fat.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c index 91019fa..cb1a3c1 100644 --- a/firmware/drivers/fat.c +++ b/firmware/drivers/fat.c @@ -155,7 +155,7 @@ struct bpb int startsector; }; -struct bpb fat_bpb; +static struct bpb fat_bpb; static int first_sector_of_cluster(int cluster); static int bpb_is_sane(void); @@ -167,9 +167,6 @@ static unsigned int getcurrdostime(unsigned short *dosdate, static int create_dos_name(unsigned char *name, unsigned char *newname); #endif -/* global FAT info struct */ -struct bpb fat_bpb; - #define FAT_CACHE_SIZE 0x20 #define FAT_CACHE_MASK (FAT_CACHE_SIZE-1) |