diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-11-01 08:31:55 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-11-01 08:31:55 +0000 |
| commit | aa25f0962cdc96116d9b94080dbbce9a3b65ec97 (patch) | |
| tree | 6d972405020c1e948a173a1e6d77d83f1a4e4198 | |
| parent | b3e41c711b20c294be786650ef909c8e6f04eb24 (diff) | |
| download | rockbox-aa25f0962cdc96116d9b94080dbbce9a3b65ec97.zip rockbox-aa25f0962cdc96116d9b94080dbbce9a3b65ec97.tar.gz rockbox-aa25f0962cdc96116d9b94080dbbce9a3b65ec97.tar.bz2 rockbox-aa25f0962cdc96116d9b94080dbbce9a3b65ec97.tar.xz | |
Removed warning.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2799 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/drivers/fat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c index 6f6873b..694a772 100644 --- a/firmware/drivers/fat.c +++ b/firmware/drivers/fat.c @@ -1200,7 +1200,7 @@ int fat_readwrite( struct fat_file *file, int sectorcount, int fat_seek(struct fat_file *file, int seeksector ) { - int clusternum, sectornum, sector; + int clusternum, sectornum, sector=0; int cluster = file->firstcluster; int i; |