diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2007-10-17 02:30:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:43:00 -0400 |
commit | 3ad90ec0908e453ba89947fcf7b5f6821b6c1e0c (patch) | |
tree | f3675aee79b1d37eee3ceaaf4489c0f444df208f /fs/udf/balloc.c | |
parent | ea0985ad7914d8226a81d0f1374ece7832e75e95 (diff) |
fs/udf/balloc.c: mark a variable as uninitialized_var()
Kill a may-be-used-uninitialized warning.
Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/udf/balloc.c')
-rw-r--r-- | fs/udf/balloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/balloc.c b/fs/udf/balloc.c index 87e87dcd3f9c..ab26176f6b91 100644 --- a/fs/udf/balloc.c +++ b/fs/udf/balloc.c | |||
@@ -689,7 +689,7 @@ static int udf_table_new_block(struct super_block *sb, | |||
689 | uint32_t spread = 0xFFFFFFFF, nspread = 0xFFFFFFFF; | 689 | uint32_t spread = 0xFFFFFFFF, nspread = 0xFFFFFFFF; |
690 | uint32_t newblock = 0, adsize; | 690 | uint32_t newblock = 0, adsize; |
691 | uint32_t elen, goal_elen = 0; | 691 | uint32_t elen, goal_elen = 0; |
692 | kernel_lb_addr eloc, goal_eloc; | 692 | kernel_lb_addr eloc, uninitialized_var(goal_eloc); |
693 | struct extent_position epos, goal_epos; | 693 | struct extent_position epos, goal_epos; |
694 | int8_t etype; | 694 | int8_t etype; |
695 | 695 | ||