From f1b43dfe4a75683d881811bd0830e38e16822d6a Mon Sep 17 00:00:00 2001 From: David Disseldorp Date: Sun, 27 Jan 2019 00:41:28 +0100 Subject: [PATCH] s3/lib: clean up have_syscall() formatting Signed-off-by: David Disseldorp Reviewed-by: Andreas Schneider --- source3/lib/util_sec.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source3/lib/util_sec.c b/source3/lib/util_sec.c index 1eac7d711b8..974e458b06e 100644 --- a/source3/lib/util_sec.c +++ b/source3/lib/util_sec.c @@ -544,8 +544,9 @@ static int have_syscall(void) samba_setuidx(ID_EFFECTIVE, -1); #endif - if (errno == ENOSYS) return -1; - + if (errno == ENOSYS) { + return -1; + } return 0; } -- 2.34.1