Skip to content
Snippets Groups Projects
Commit ee11179f authored by Andreas Dilger's avatar Andreas Dilger
Browse files

Quiet uninitialized variable warning.

parent 93fa75ef
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ static int ll_file_open(struct inode *inode, struct file *file)
struct lov_stripe_md *lsm = NULL;
struct ll_sb_info *sbi = ll_i2sbi(inode);
struct ll_inode_info *lli = ll_i2info(inode);
int rc;
int rc = 0;
ENTRY;
LASSERT(!file->private_data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment