[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1400156776-3412-1-git-send-email-waydi1@gmail.com>
Date: Thu, 15 May 2014 21:26:15 +0900
From: Seunghun Lee <waydi1@...il.com>
To: jack@...e.cz
Cc: lczerner@...hat.com, linux-ext4@...r.kernel.org,
linux-kernel@...r.kernel.org, Seunghun Lee <waydi1@...il.com>
Subject: [PATCH 1/2] ext2: fix type of return value ext2_fill_super()
This patch fixes type of return value ext2_fill_super().
Signed-off-by: Seunghun Lee <waydi1@...il.com>
---
fs/ext2/super.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/ext2/super.c b/fs/ext2/super.c
index 3750031..e3fc51e 100644
--- a/fs/ext2/super.c
+++ b/fs/ext2/super.c
@@ -770,7 +770,7 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent)
unsigned long logic_sb_block;
unsigned long offset = 0;
unsigned long def_mount_opts;
- long ret = -EINVAL;
+ int ret = -EINVAL;
int blocksize = BLOCK_SIZE;
int db_count;
int i, j;
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists