diff mbox

ext4: fix build warning when EXT4FS_DEBUG is on

Message ID 1248024057-21418-1-git-send-email-bergwolf@gmail.com
State Accepted, archived
Headers show

Commit Message

Peng Tao July 19, 2009, 5:20 p.m. UTC
When compiling with EXT4FS_DEBUG on, gcc will complain with following warnings:

linux-2.6/fs/ext4/ialloc.c: In function ‘ext4_count_free_inodes’:
linux-2.6/fs/ext4/ialloc.c:1192: warning: format ‘%lu’ expects type
‘long unsigned int’, but argument 2 has type ‘ext4_group_t’

So add a type cast to suppress it. 

Signed-off-by: Peng Tao <bergwolf@gmail.com>
---
 fs/ext4/ialloc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Theodore Ts'o July 28, 2009, 1:47 a.m. UTC | #1
On Mon, Jul 20, 2009 at 01:20:57AM +0800, Peng Tao wrote:
> When compiling with EXT4FS_DEBUG on, gcc will complain with following warnings:
> 
> linux-2.6/fs/ext4/ialloc.c: In function ‘ext4_count_free_inodes’:
> linux-2.6/fs/ext4/ialloc.c:1192: warning: format ‘%lu’ expects type
> ‘long unsigned int’, but argument 2 has type ‘ext4_group_t’
> 
> So add a type cast to suppress it. 
> 
> Signed-off-by: Peng Tao <bergwolf@gmail.com>

Thanks, applied to the ext4 patch queue.

						- Ted
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c
index 2f64573..cd77f03 100644
--- a/fs/ext4/ialloc.c
+++ b/fs/ext4/ialloc.c
@@ -1189,7 +1189,7 @@  unsigned long ext4_count_free_inodes(struct super_block *sb)
 
 		x = ext4_count_free(bitmap_bh, EXT4_INODES_PER_GROUP(sb) / 8);
 		printk(KERN_DEBUG "group %lu: stored = %d, counted = %lu\n",
-			i, ext4_free_inodes_count(sb, gdp), x);
+			(unsigned long)i, ext4_free_inodes_count(sb, gdp), x);
 		bitmap_count += x;
 	}
 	brelse(bitmap_bh);