From: Jeffrey Altman Date: Sun, 10 Feb 2013 16:54:44 +0000 (-0500) Subject: rx: remove rx_misc.h define trailing semicolons X-Git-Tag: upstream/1.8.0_pre1^2~1558 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=76fb036f4e7d185ab725b6754652a764906c9e0b;p=packages%2Fo%2Fopenafs.git rx: remove rx_misc.h define trailing semicolons PIN and UNPIN macro definitions should not have trailing semicolons. Change-Id: I242c0a7a40cbabe852ed975eb64df52dbb585624 Reviewed-on: http://gerrit.openafs.org/9088 Tested-by: BuildBot Reviewed-by: Chas Williams - CONTRACTOR Reviewed-by: Simon Wilkinson Reviewed-by: Jeffrey Altman --- diff --git a/src/rx/rx_misc.h b/src/rx/rx_misc.h index 912194fa7..651a422a6 100644 --- a/src/rx/rx_misc.h +++ b/src/rx/rx_misc.h @@ -20,11 +20,11 @@ #endif #if defined(AFS_AIX41_ENV) && defined(KERNEL) -#define PIN(a, b) pin(a, b); -#define UNPIN(a, b) unpin(a, b); +#define PIN(a, b) pin(a, b) +#define UNPIN(a, b) unpin(a, b) #else -#define PIN(a, b) ; -#define UNPIN(a, b) ; +#define PIN(a, b) +#define UNPIN(a, b) #endif