Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 206302
b: refs/heads/master
c: a271fe8
h: refs/heads/master
v: v3
  • Loading branch information
Joe Perches authored and Theodore Ts'o committed Jul 27, 2010
1 parent 8d97dce commit 58d3cb3
Show file tree
Hide file tree
Showing 3 changed files with 3 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: e5880d76aea443b04e07da19830da0f6f7494eef
refs/heads/master: a271fe8527fe9637bdd82c97123b1356940dd84b
2 changes: 1 addition & 1 deletion trunk/fs/ext4/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ int ext4_htree_store_dirent(struct file *dir_file, __u32 hash,
struct dir_private_info *info;
int len;

info = (struct dir_private_info *) dir_file->private_data;
info = dir_file->private_data;
p = &info->root.rb_node;

/* Create and allocate the fname structure */
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/ext4/mballoc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2219,7 +2219,7 @@ static int ext4_mb_seq_groups_open(struct inode *inode, struct file *file)

rc = seq_open(file, &ext4_mb_seq_groups_ops);
if (rc == 0) {
struct seq_file *m = (struct seq_file *)file->private_data;
struct seq_file *m = file->private_data;
m->private = sb;
}
return rc;
Expand Down

0 comments on commit 58d3cb3

Please sign in to comment.