X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=liblttng-ust%2Flttng-ust-abi.c;h=4f32f55511acd25b860ab9c4a11eebde8ca9acf4;hb=ab249ecfea7ddc352e1fb5c3b97a4f0fbb62f3ca;hp=1361f5cc0cb6e4b7939c5f03ba6676195c34e9a1;hpb=a56fd376c76b448c9f639b8ace821471a2fb7b40;p=lttng-ust.git diff --git a/liblttng-ust/lttng-ust-abi.c b/liblttng-ust/lttng-ust-abi.c index 1361f5cc..4f32f555 100644 --- a/liblttng-ust/lttng-ust-abi.c +++ b/liblttng-ust/lttng-ust-abi.c @@ -718,7 +718,7 @@ long lttng_event_notifier_enabler_cmd(int objd, unsigned int cmd, unsigned long case LTTNG_UST_FILTER: return lttng_event_notifier_enabler_attach_filter_bytecode( event_notifier_enabler, - (struct lttng_ust_filter_bytecode_node *) arg); + (struct lttng_ust_bytecode_node *) arg); case LTTNG_UST_EXCLUSION: return lttng_event_notifier_enabler_attach_exclusion(event_notifier_enabler, (struct lttng_ust_excluder_node *) arg); @@ -1148,7 +1148,7 @@ long lttng_event_enabler_cmd(int objd, unsigned int cmd, unsigned long arg, int ret; ret = lttng_event_enabler_attach_filter_bytecode(enabler, - (struct lttng_ust_filter_bytecode_node *) arg); + (struct lttng_ust_bytecode_node *) arg); if (ret) return ret; return 0;