From ce96143d79ea006f7b1318dd1c962d4c4f79fc1e Mon Sep 17 00:00:00 2001 From: Ken Hornstein Date: Thu, 5 Dec 2013 13:57:36 -0500 Subject: [PATCH] Remove extra whitespace from macro invocations On MacOS X 10.9, the compiler has switched to LLVM and as a consequence generates an error if there is a space between a macro invocation and the starting left parenthesis. Based on code originally done by Matt Haught . Change-Id: I28848f5294d0575d8abb1759c202cc3c2db85ac2 Reviewed-on: http://gerrit.openafs.org/10540 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- src/kauth/kauth.rg | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/kauth/kauth.rg b/src/kauth/kauth.rg index 704f199..80e5b11 100644 --- a/src/kauth/kauth.rg +++ b/src/kauth/kauth.rg @@ -138,23 +138,23 @@ struct kadstats { afs_int32 hashTableUtilization; /* utilization of non-empty hash table entries in parts per 10,000 */ /* count of requests and aborts for each RPC */ - declare_stat (Authenticate); - declare_stat (ChangePassword); - declare_stat (GetTicket); - declare_stat (CreateUser); - declare_stat (SetPassword); - declare_stat (SetFields); - declare_stat (DeleteUser); - declare_stat (GetEntry); - declare_stat (ListEntry); - declare_stat (GetStats); - declare_stat (GetPassword); - declare_stat (GetRandomKey); - declare_stat (Debug); - declare_stat (UAuthenticate); - declare_stat (UGetTicket); - declare_stat (Unlock); - declare_stat (LockStatus); + declare_stat(Authenticate); + declare_stat(ChangePassword); + declare_stat(GetTicket); + declare_stat(CreateUser); + declare_stat(SetPassword); + declare_stat(SetFields); + declare_stat(DeleteUser); + declare_stat(GetEntry); + declare_stat(ListEntry); + declare_stat(GetStats); + declare_stat(GetPassword); + declare_stat(GetRandomKey); + declare_stat(Debug); + declare_stat(UAuthenticate); + declare_stat(UGetTicket); + declare_stat(Unlock); + declare_stat(LockStatus); afs_int32 string_checks; /* errors detected in name.inst strs */ afs_int32 reserved1; afs_int32 reserved2; -- 1.9.4