diff options
| author | gkostka <kostka.grzegorz@gmail.com> | 2015-12-18 14:44:05 +0100 |
|---|---|---|
| committer | gkostka <kostka.grzegorz@gmail.com> | 2015-12-18 14:44:05 +0100 |
| commit | e941966c0afc9905726fb985bc235e4bbec27dbd (patch) | |
| tree | 228b3bd915c539943c7b29903bb80ea560687a50 | |
| parent | 880e69210178f42b98b9f1075ce385ee2327a390 (diff) | |
ext4_xattr: little style fix
| -rw-r--r-- | lwext4/ext4_xattr.c | 7 | ||||
| -rw-r--r-- | lwext4/ext4_xattr.h | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/lwext4/ext4_xattr.c b/lwext4/ext4_xattr.c index f150605..b446d62 100644 --- a/lwext4/ext4_xattr.c +++ b/lwext4/ext4_xattr.c @@ -801,8 +801,8 @@ int ext4_fs_remove_xattr(struct ext4_xattr_ref *ref, uint8_t name_index, } int ext4_fs_get_xattr(struct ext4_xattr_ref *ref, uint8_t name_index, - const char *name, size_t name_len, void *buf, size_t buf_size, - size_t *data_size) + const char *name, size_t name_len, void *buf, + size_t buf_size, size_t *data_size) { int ret = EOK; size_t item_size = 0; @@ -917,7 +917,8 @@ const char *ext4_extract_xattr_name(const char *full_name, size_t full_name_len, return NULL; } -const char *ext4_get_xattr_name_prefix(uint8_t name_index, size_t *ret_prefix_len) +const char *ext4_get_xattr_name_prefix(uint8_t name_index, + size_t *ret_prefix_len) { int i; diff --git a/lwext4/ext4_xattr.h b/lwext4/ext4_xattr.h index 5b2f155..f6076d2 100644 --- a/lwext4/ext4_xattr.h +++ b/lwext4/ext4_xattr.h @@ -70,7 +70,7 @@ const char *ext4_extract_xattr_name(const char *full_name, size_t full_name_len, uint8_t *name_index, size_t *name_len); const char *ext4_get_xattr_name_prefix(uint8_t name_index, - size_t *ret_prefix_len); + size_t *ret_prefix_len); #ifdef __cplusplus } |
