From c7c04eb5a921c7ed957616a9cb50ca60d9ce9c24 Mon Sep 17 00:00:00 2001 From: Rafaël Carré Date: Sun, 11 Jul 2010 16:46:40 +0000 Subject: fat.c: fix format specifier in DEBUG build git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27386 a1c6a512-1295-4272-9138-f99709370657 --- firmware/drivers/fat.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c index f93b32f832..de579f7603 100644 --- a/firmware/drivers/fat.c +++ b/firmware/drivers/fat.c @@ -737,7 +737,7 @@ static unsigned long find_free_cluster(IF_MV2(struct bpb* fat_bpb,) cluster numbers out of bounds */ if ( c < 2 || c > fat_bpb->dataclusters+1 ) continue; - LDEBUGF("find_free_cluster(%x) == %x\n",startcluster,c); + LDEBUGF("find_free_cluster(%lx) == %x\n",startcluster,c); fat_bpb->fsinfo.nextfree = c; return c; } @@ -793,7 +793,7 @@ static int update_fat_entry(IF_MV2(struct bpb* fat_bpb,) unsigned long entry, val &= 0xFFFF; - LDEBUGF("update_fat_entry(%x,%x)\n",entry,val); + LDEBUGF("update_fat_entry(%lx,%lx)\n",entry,val); if (entry==val) panicf("Creating FAT loop: %lx,%lx\n",entry,val); @@ -817,7 +817,7 @@ static int update_fat_entry(IF_MV2(struct bpb* fat_bpb,) unsigned long entry, fat_bpb->fsinfo.freecount++; } - LDEBUGF("update_fat_entry: %d free clusters\n", + LDEBUGF("update_fat_entry: %lu free clusters\n", fat_bpb->fsinfo.freecount); sec[offset] = htole16(val); -- cgit v1.2.3