From da573399d560fc659ee45ae041dcb2bf5b9b0bf6 Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Sun, 8 Mar 2009 20:56:18 +0100 Subject: Remove extra semi-colons from defines in sdt.h. * includes/sys/sdt.h (STAP_PROBE_STRUCT_ARG): Remove ending semi-colon. (STAP_LABEL_REF): Likewise. --- includes/sys/sdt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'includes') diff --git a/includes/sys/sdt.h b/includes/sys/sdt.h index 4ebf4fe0..8e27cfdb 100644 --- a/includes/sys/sdt.h +++ b/includes/sys/sdt.h @@ -13,10 +13,10 @@ #if _LP64 #define STAP_PROBE_STRUCT_ARG(arg) \ - __uint64_t arg; + __uint64_t arg #else #define STAP_PROBE_STRUCT_ARG(arg) \ - long arg __attribute__ ((aligned(8))); + long arg __attribute__ ((aligned(8))) #endif #define STAP_SENTINEL 0x31425250 @@ -36,7 +36,7 @@ static volatile struct _probe_ ## probe _probe_ ## probe __attribute__ ((section // The goto _probe_ prevents the label from "drifting" #define STAP_LABEL_REF(probe, label) \ if (__builtin_expect(_probe_ ## probe.probe_type < 0, 0)) \ - goto label; + goto label // These baroque macros are used to create a unique label #define STAP_CONCAT(a,b) a ## b -- cgit