From: Dan Carpenter Date: Fri, 25 Aug 2017 10:36:15 +0000 (+0300) Subject: um: remove a stray tab X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=7b24afbfe30b38d59cca7543a352b03848330d91;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git um: remove a stray tab Static checkers would urge us to add curly braces to this code, but actually the code works correctly. It just isn't indented right. Signed-off-by: Dan Carpenter Signed-off-by: Richard Weinberger --- diff --git a/arch/x86/um/os-Linux/tls.c b/arch/x86/um/os-Linux/tls.c index 9d94b3b76c74..ed8ea90967dc 100644 --- a/arch/x86/um/os-Linux/tls.c +++ b/arch/x86/um/os-Linux/tls.c @@ -37,7 +37,7 @@ void check_host_supports_tls(int *supports_tls, int *tls_min) continue; else if (errno == ENOSYS) *supports_tls = 0; - return; + return; } }