summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMihail Zenkov <mihail.zenkov@gmail.com>2016-04-07 10:28:15 +0000
committerMihail Zenkov <mihail.zenkov@gmail.com>2016-04-07 10:28:15 +0000
commitc537e05784bb9dcad8c29e8720a30b09aff28b7d (patch)
tree3380bdb20ebc4c7afe9102a72b524e93ce881cd8
parente4e0b18daafd7f732b0b14be4e099619937ca589 (diff)
downloadrockbox-c537e05.tar.gz
rockbox-c537e05.zip
Fix (D)EBUG compilation
Change-Id: I5cb6d9ec3d14389b03ae43edb15b9c6199df322b
-rw-r--r--firmware/drivers/fat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c
index 424e2ba640..a090bd5899 100644
--- a/firmware/drivers/fat.c
+++ b/firmware/drivers/fat.c
@@ -812,7 +812,7 @@ static long get_next_cluster16(struct bpb *fat_bpb, long startcluster)
if (!sec)
{
dc_unlock_cache();
- DEBUGF("%s: Could not cache sector %d\n", __func__, sector);
+ DEBUGF("%s: Could not cache sector %lu\n", __func__, sector);
return -1;
}
@@ -851,7 +851,7 @@ static long find_free_cluster16(struct bpb *fat_bpb, long startcluster)
if (c < 2 || c > fat_bpb->dataclusters + 1)
continue;
- DEBUGF("%s(%lx) == %x\n", __func__, startcluster, c);
+ DEBUGF("%s(%lx) == %lx\n", __func__, startcluster, c);
fat_bpb->fsinfo.nextfree = c;
return c;
@@ -887,7 +887,7 @@ static int update_fat_entry16(struct bpb *fat_bpb, unsigned long entry,
if (!sec)
{
dc_unlock_cache();
- DEBUGF("Could not cache sector %u\n", sector);
+ DEBUGF("Could not cache sector %lu\n", sector);
return -1;
}
@@ -2101,7 +2101,7 @@ int fat_remove(struct fat_file *file, enum fat_remove_op what)
if (file->firstcluster == fat_bpb->bpb_rootclus)
{
DEBUGF("Trying to remove root of volume %d\n",
- IF_MV_VOL(info->volume));
+ IF_MV_VOL(file->volume));
FAT_ERROR(-2);
}