X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;ds=sidebyside;f=ltt-debugfs-abi.c;h=86a1720068c49eb96d306f86711f6bb54bd22b65;hb=ff6608f2001df7c7f69445b6c9de238650a71234;hp=3d231c0d211c10f01a1542b02615f2ab0e2bf2ec;hpb=e6a17f26e9b344e9d2349a81f9dcee09e96593d6;p=lttng-modules.git diff --git a/ltt-debugfs-abi.c b/ltt-debugfs-abi.c index 3d231c0d..86a17200 100644 --- a/ltt-debugfs-abi.c +++ b/ltt-debugfs-abi.c @@ -268,7 +268,7 @@ void lttng_metadata_create_events(struct file *channel_file) * We tolerate no failure path after event creation. It will stay * invariant for the rest of the session. */ - event = ltt_event_create(channel, &metadata_params, NULL); + event = ltt_event_create(channel, &metadata_params, NULL, NULL); if (!event) { goto create_error; } @@ -534,7 +534,7 @@ int lttng_abi_create_event(struct file *channel_file, * We tolerate no failure path after event creation. It * will stay invariant for the rest of the session. */ - event = ltt_event_create(channel, &event_param, NULL); + event = ltt_event_create(channel, &event_param, NULL, NULL); if (!event) { ret = -EINVAL; goto event_error;