[PATCH] cramfs: explicitly state type of unsigned int

From: Adrian McMenamin
Date: Tue Feb 03 2009 - 18:19:47 EST


I was using cramfs as a model for a new filesystem and came across this,
rather confusing issue...

These variables are currently declared with only a type modifier, not a
type.

Signed-off-by: Adrian McMenamin <adrian@xxxxxxxxxxxxxxxxx>
---


diff --git a/fs/cramfs/inode.c b/fs/cramfs/inode.c
index a07338d..d9210bc 100644
--- a/fs/cramfs/inode.c
+++ b/fs/cramfs/inode.c
@@ -136,7 +136,7 @@ static void *cramfs_read(struct super_block *sb, unsigned int offset, unsigned i
{
struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
struct page *pages[BLKS_PER_BUF];
- unsigned i, blocknr, buffer;
+ unsigned int i, blocknr, buffer;
unsigned long devsize;
char *data;

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/