Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 347542
b: refs/heads/master
c: 61412b6
h: refs/heads/master
v: v3
  • Loading branch information
Namjae Jeon authored and Jaegeuk Kim committed Dec 11, 2012
1 parent c012b44 commit d08a429
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1042d60f917d78ef1a6eaea297a1020484d4bf74
refs/heads/master: 61412b64b965af72798000c3c921e88db31216b1
3 changes: 1 addition & 2 deletions trunk/fs/f2fs/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -287,9 +287,8 @@ static int f2fs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
int err;

inode = f2fs_new_inode(dir, S_IFDIR | mode);
err = PTR_ERR(inode);
if (IS_ERR(inode))
return err;
return PTR_ERR(inode);

inode->i_op = &f2fs_dir_inode_operations;
inode->i_fop = &f2fs_dir_operations;
Expand Down

0 comments on commit d08a429

Please sign in to comment.