From: Mathieu Desnoyers Date: Thu, 9 Dec 2010 20:54:36 +0000 (-0500) Subject: Temporarily use a non-warning-generating probe pointer X-Git-Tag: v2.0-pre1~198 X-Git-Url: https://git.liburcu.org/?a=commitdiff_plain;h=d7847692f0942697df3f9f3597da8bc57911e61e;p=lttng-modules.git Temporarily use a non-warning-generating probe pointer Signed-off-by: Mathieu Desnoyers --- diff --git a/ltt-debugfs-abi.c b/ltt-debugfs-abi.c index 5741eda2..9043759f 100644 --- a/ltt-debugfs-abi.c +++ b/ltt-debugfs-abi.c @@ -290,7 +290,7 @@ int lttng_abi_create_event(struct file *channel_file, * invariant for the rest of the session. */ event = ltt_event_create(channel, event_name, event_param.itype, - NULL, NULL); /* TODO non-null probe */ + (void *) 0x1, NULL); /* TODO connect real probe */ if (!event) { goto event_error; ret = -EEXIST;