diff options
| author | ngkaho1234 <ngkaho1234@gmail.com> | 2016-05-16 09:12:34 +0000 |
|---|---|---|
| committer | ngkaho1234 <ngkaho1234@gmail.com> | 2016-05-16 13:50:54 +0000 |
| commit | 6a6833fd4b9b2067e7baf0520fc792d230a9ef2c (patch) | |
| tree | 1d09db38337e0db84a76b4c59d6f0099753fe3a5 /include | |
| parent | 06382010385758c11ab9e643751c88c7e969ca34 (diff) | |
ext4_xattr: type changes
- struct ext4_xattr_ref::inode_size_rem's type is changed from int32_t to size_t
- struct ext4_xattr_ref::block_size_rem's type is changed from int32_t to size_t
Diffstat (limited to 'include')
| -rw-r--r-- | include/ext4_xattr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ext4_xattr.h b/include/ext4_xattr.h index a5cd814..3cd1bcd 100644 --- a/include/ext4_xattr.h +++ b/include/ext4_xattr.h @@ -67,8 +67,8 @@ struct ext4_xattr_ref { struct ext4_inode_ref *inode_ref; bool dirty; size_t ea_size; - int32_t block_size_rem; - int32_t inode_size_rem; + size_t block_size_rem; + size_t inode_size_rem; struct ext4_fs *fs; void *iter_arg; |
