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 <dmhaught@ncsu.edu>.

Reviewed-on: http://gerrit.openafs.org/10540
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@your-file-system.com>
(cherry picked from commit ce96143d79ea006f7b1318dd1c962d4c4f79fc1e)

Reviewed-on: http://gerrit.openafs.org/10543
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
Reviewed-by: Andrew Deason <adeason@sinenomine.net>
Reviewed-by: Marc Dionne <marc.c.dionne@gmail.com>
Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de>
(cherry picked from commit e54a0902fb4ed09d955a2cb9c3d091da28b8f21a)

Change-Id: I1dc8a50bb28f5656bc05b261870b6e01684034a5
Reviewed-on: http://gerrit.openafs.org/10606
Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de>
Tested-by: Stephan Wiesand <stephan.wiesand@desy.de>
This commit is contained in:
Ken Hornstein 2013-12-05 13:57:36 -05:00 committed by Stephan Wiesand
parent 5dd30fbf35
commit 5f45d5b8eb

View File

@ -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;