sparc: vDSO: remove an extra tab
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 19 Jan 2018 13:23:21 +0000 (16:23 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 22 Jan 2018 20:01:11 +0000 (12:01 -0800)
This statement is indented one tab too far which is confusing and
leads to a Smatch warning:

    arch/sparc/vdso/vma.c:254 arch_setup_additional_pages()
    warn: curly braces intended?

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Nagarathnam Muthusamy <nagarathnam.muthusamy@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc/vdso/vma.c

index 0a6f50098e2340570d42183169c15edef79bdcd3..f51595f861b85999f62e0ac7db3f7726a486eede 100644 (file)
@@ -251,7 +251,7 @@ int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
        else
                return map_vdso(&vdso_image_32_builtin, &vdso_mapping32);
 #else
-               return map_vdso(&vdso_image_64_builtin, &vdso_mapping64);
+       return map_vdso(&vdso_image_64_builtin, &vdso_mapping64);
 #endif
 
 }