mirror of https://github.com/torvalds/linux.git
erofs: correct indentation of an assigned structure inside a function
Trivial change, the expected indentation ruled by the coding style hasn't been met. Signed-off-by: Vladimir Zapolskiy <vladimir@tuxera.com> Link: https://lore.kernel.org/r/20200102120232.15074-1-vladimir@tuxera.com Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Gao Xiang <gaoxiang25@huawei.com>
This commit is contained in:
parent
c79f46a282
commit
a55861c800
|
|
@ -49,7 +49,8 @@ static inline const struct xattr_handler *erofs_xattr_handler(unsigned int idx)
|
||||||
static const struct xattr_handler *xattr_handler_map[] = {
|
static const struct xattr_handler *xattr_handler_map[] = {
|
||||||
[EROFS_XATTR_INDEX_USER] = &erofs_xattr_user_handler,
|
[EROFS_XATTR_INDEX_USER] = &erofs_xattr_user_handler,
|
||||||
#ifdef CONFIG_EROFS_FS_POSIX_ACL
|
#ifdef CONFIG_EROFS_FS_POSIX_ACL
|
||||||
[EROFS_XATTR_INDEX_POSIX_ACL_ACCESS] = &posix_acl_access_xattr_handler,
|
[EROFS_XATTR_INDEX_POSIX_ACL_ACCESS] =
|
||||||
|
&posix_acl_access_xattr_handler,
|
||||||
[EROFS_XATTR_INDEX_POSIX_ACL_DEFAULT] =
|
[EROFS_XATTR_INDEX_POSIX_ACL_DEFAULT] =
|
||||||
&posix_acl_default_xattr_handler,
|
&posix_acl_default_xattr_handler,
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue