From e5298c8bc1221f4f02ac1c1d7fd6de7a2b95af97 Mon Sep 17 00:00:00 2001 From: Noel Power Date: Mon, 17 Sep 2018 14:17:25 +0200 Subject: uid_wrapper: Fix Tab/indent error with python3 Signed-off-by: Noel Power Reviewed-by: Andreas Schneider Autobuild-User(master): Noel Power Autobuild-Date(master): Wed Sep 19 17:49:33 CEST 2018 on sn-devel-144 --- third_party/uid_wrapper/wscript | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'third_party') diff --git a/third_party/uid_wrapper/wscript b/third_party/uid_wrapper/wscript index b1dc3792bc3..61d8a189625 100644 --- a/third_party/uid_wrapper/wscript +++ b/third_party/uid_wrapper/wscript @@ -59,13 +59,13 @@ def configure(conf): addmain=False, strict=True, msg='Checking for printf format validation support') - # Prototype checks - conf.CHECK_C_PROTOTYPE('setgroups', - 'int setgroups(int ngroups, const gid_t *grouplist)', - define='HAVE_SETGROUPS_INT', headers='unistd.h sys/types.h') - conf.CHECK_C_PROTOTYPE('syscall', - 'int syscall(int number, ...)', - define='HAVE_SYSCALL_INT', headers='unistd.h sys/syscall.h') + # Prototype checks + conf.CHECK_C_PROTOTYPE('setgroups', + 'int setgroups(int ngroups, const gid_t *grouplist)', + define='HAVE_SETGROUPS_INT', headers='unistd.h sys/types.h') + conf.CHECK_C_PROTOTYPE('syscall', + 'int syscall(int number, ...)', + define='HAVE_SYSCALL_INT', headers='unistd.h sys/syscall.h') if (sys.platform.rfind('linux') > -1): conf.CHECK_CODE(''' -- cgit v1.2.1