summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-11-01 08:31:55 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-11-01 08:31:55 +0000
commitaa25f0962cdc96116d9b94080dbbce9a3b65ec97 (patch)
tree6d972405020c1e948a173a1e6d77d83f1a4e4198 /firmware/drivers
parentb3e41c711b20c294be786650ef909c8e6f04eb24 (diff)
downloadrockbox-aa25f0962cdc96116d9b94080dbbce9a3b65ec97.tar.gz
rockbox-aa25f0962cdc96116d9b94080dbbce9a3b65ec97.zip
Removed warning.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2799 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers')
-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 6f6873b65e..694a7727c3 100644
--- a/firmware/drivers/fat.c
+++ b/firmware/drivers/fat.c
@@ -1200,7 +1200,7 @@ int fat_readwrite( struct fat_file *file, int sectorcount,
1200 1200
1201int fat_seek(struct fat_file *file, int seeksector ) 1201int fat_seek(struct fat_file *file, int seeksector )
1202{ 1202{
1203 int clusternum, sectornum, sector; 1203 int clusternum, sectornum, sector=0;
1204 int cluster = file->firstcluster; 1204 int cluster = file->firstcluster;
1205 int i; 1205 int i;
1206 1206