PIN and UNPIN macro definitions should not have trailing
semicolons.
Change-Id: I242c0a7a40cbabe852ed975eb64df52dbb585624
Reviewed-on: http://gerrit.openafs.org/9088
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Chas Williams - CONTRACTOR <chas@cmf.nrl.navy.mil>
Reviewed-by: Simon Wilkinson <simonxwilkinson@gmail.com>
Reviewed-by: Jeffrey Altman <jaltman@your-file-system.com>
#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