Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matt-wu/Ext3Fsd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaho Ng <ngkaho1234@gmail.com>2016-05-31 12:32:51 +0300
committerKaho Ng <ngkaho1234@gmail.com>2016-05-31 12:32:51 +0300
commit96bbf545c8bf459236de955256f79026968128ce (patch)
tree456e5a0c2ad0e9d1984a4f0c131be22426bad372
parentc29f39b3e3b3eb4358a13ec6b7b76087383b2a81 (diff)
ext4_xattr: fix indentation
-rw-r--r--Ext3Fsd/ext4/ext4_xattr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ext3Fsd/ext4/ext4_xattr.c b/Ext3Fsd/ext4/ext4_xattr.c
index 3c33b10..635e1f7 100644
--- a/Ext3Fsd/ext4/ext4_xattr.c
+++ b/Ext3Fsd/ext4/ext4_xattr.c
@@ -216,7 +216,7 @@ ext4_xattr_item_search(struct ext4_xattr_ref *xattr_ref,
static void ext4_xattr_item_insert(struct ext4_xattr_ref *xattr_ref,
struct ext4_xattr_item *item)
{
- rb_insert(&xattr_ref->root, &item->node,
+ rb_insert(&xattr_ref->root, &item->node,
ext4_xattr_item_cmp);
list_add_tail(&item->list_node, &xattr_ref->ordered_list);
}
@@ -224,7 +224,7 @@ static void ext4_xattr_item_insert(struct ext4_xattr_ref *xattr_ref,
static void ext4_xattr_item_remove(struct ext4_xattr_ref *xattr_ref,
struct ext4_xattr_item *item)
{
- rb_erase(&item->node, &xattr_ref->root);
+ rb_erase(&item->node, &xattr_ref->root);
list_del_init(&item->list_node);
}