From: Mathieu Desnoyers Date: Mon, 13 Feb 2012 19:30:58 +0000 (-0500) Subject: Add missing comma to tracepoint STAP_PROBEV call X-Git-Tag: v1.9.8~13 X-Git-Url: https://git.lttng.org/?a=commitdiff_plain;h=7cb85a18ed87597ff755f3781b27bc11e1125eb1;p=lttng-ust.git Add missing comma to tracepoint STAP_PROBEV call Signed-off-by: Mathieu Desnoyers --- diff --git a/include/lttng/tracepoint.h b/include/lttng/tracepoint.h index 6ad3ef9c..a59bef21 100644 --- a/include/lttng/tracepoint.h +++ b/include/lttng/tracepoint.h @@ -35,7 +35,7 @@ extern "C" { #define tracepoint(provider, name, ...) \ do { \ - STAP_PROBEV(provider, name ## __VA_ARGS__); \ + STAP_PROBEV(provider, name, ## __VA_ARGS__); \ if (caa_unlikely(__tracepoint_##provider##___##name.state)) \ __tracepoint_cb_##provider##___##name(__VA_ARGS__); \ } while (0)