diff options
author | Justin P. Mattock <justinmattock@gmail.com> | 2010-07-07 21:42:13 -0700 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2010-08-02 14:57:40 +0200 |
commit | 581b7e9fc00789782cb3bdca58db49f6f0f66608 (patch) | |
tree | 09760be83f7b3896a161c472083079d0a0964651 /fs/udf | |
parent | de67445f0e6009fd1e338eda023857b18b16e647 (diff) | |
download | op-kernel-dev-581b7e9fc00789782cb3bdca58db49f6f0f66608.zip op-kernel-dev-581b7e9fc00789782cb3bdca58db49f6f0f66608.tar.gz |
udf: super.c Fix warning: variable 'sbi' set but not used
This fixes this warning when building the kernel:
CC fs/udf/super.o
fs/udf/super.c: In function 'udf_load_sequence':
fs/udf/super.c:1582:22: warning: variable 'sbi' set but not used
Please have a look, when you have time and let me know.
Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/udf')
-rw-r--r-- | fs/udf/super.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/udf/super.c b/fs/udf/super.c index 612d1e2..12bb651 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c @@ -1579,9 +1579,7 @@ static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh, { struct anchorVolDescPtr *anchor; long main_s, main_e, reserve_s, reserve_e; - struct udf_sb_info *sbi; - sbi = UDF_SB(sb); anchor = (struct anchorVolDescPtr *)bh->b_data; /* Locate the main sequence */ |