diff options
author | Bart Van Assche <bart.vanassche@wdc.com> | 2018-06-20 10:03:31 -0700 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2018-08-06 13:12:31 +0200 |
commit | bece2e8239331d382f98b381f90e425a11157653 (patch) | |
tree | 2b65569759f3f1aa0e6739d3dfb81730826cd866 /fs/btrfs/ioctl.c | |
parent | a9ecb653b0ac9ed95671aa494015bbb705bf3eae (diff) | |
download | linux-bece2e8239331d382f98b381f90e425a11157653.tar.bz2 |
btrfs: Fix misleading indentation reported by smatch
This patch avoids that building the BTRFS source code with smatch
triggers complaints about inconsistent indenting.
Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/ioctl.c')
-rw-r--r-- | fs/btrfs/ioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index b077544b5232..0c4b9f364e84 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c @@ -2507,8 +2507,8 @@ out: static noinline int btrfs_ioctl_ino_lookup(struct file *file, void __user *argp) { - struct btrfs_ioctl_ino_lookup_args *args; - struct inode *inode; + struct btrfs_ioctl_ino_lookup_args *args; + struct inode *inode; int ret = 0; args = memdup_user(argp, sizeof(*args)); |