From 76fb036f4e7d185ab725b6754652a764906c9e0b Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Sun, 10 Feb 2013 11:54:44 -0500 Subject: [PATCH] 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 --- src/rx/rx_misc.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/rx/rx_misc.h b/src/rx/rx_misc.h index 912194f..651a422 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 -- 1.9.4