diff options
author | Jan Kara <jack@suse.cz> | 2008-11-25 09:31:26 -0500 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2009-01-05 11:40:24 -0500 |
commit | 57a09a7b3d9445a17c78d544f1e49d4d7d61705a (patch) | |
tree | 27c0221c4fe220a3cfeba71af2e6f35f68f69212 /fs/ocfs2/quota_global.c | |
parent | b86c86fa1feb50221dc16071ae5b8a4acf3bd32c (diff) |
ocfs2: Add missing initialization
Add missing variable initialization to ocfs2_dquot_drop_slow().
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/ocfs2/quota_global.c')
-rw-r--r-- | fs/ocfs2/quota_global.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/quota_global.c b/fs/ocfs2/quota_global.c index 49b536a2190d..10ecb33298d8 100644 --- a/fs/ocfs2/quota_global.c +++ b/fs/ocfs2/quota_global.c | |||
@@ -870,7 +870,7 @@ out: | |||
870 | 870 | ||
871 | static int ocfs2_dquot_drop_slow(struct inode *inode) | 871 | static int ocfs2_dquot_drop_slow(struct inode *inode) |
872 | { | 872 | { |
873 | int status; | 873 | int status = 0; |
874 | int cnt; | 874 | int cnt; |
875 | int got_lock[MAXQUOTAS] = {0, 0}; | 875 | int got_lock[MAXQUOTAS] = {0, 0}; |
876 | handle_t *handle; | 876 | handle_t *handle; |