From: Mathieu Desnoyers Date: Mon, 15 Mar 2021 19:58:13 +0000 (-0400) Subject: Fix: set_ust_capture: missing ABI rename X-Git-Tag: v2.13.0-rc1~235 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=3d1384a4add389c38f8554130e8dec2e2d06009d Fix: set_ust_capture: missing ABI rename struct lttng_ust_object_data has become struct lttng_ust_abi_object_data. It gives a compiler warning. Signed-off-by: Mathieu Desnoyers Signed-off-by: Jérémie Galarneau Change-Id: Ia29eac5903b43a15c02df7204cf5344226d30381 --- diff --git a/src/bin/lttng-sessiond/ust-app.c b/src/bin/lttng-sessiond/ust-app.c index 6e2659c1e..8e96e3e42 100644 --- a/src/bin/lttng-sessiond/ust-app.c +++ b/src/bin/lttng-sessiond/ust-app.c @@ -1585,7 +1585,7 @@ error: static int set_ust_capture(struct ust_app *app, const struct lttng_bytecode *bytecode, unsigned int capture_seqnum, - struct lttng_ust_object_data *ust_object) + struct lttng_ust_abi_object_data *ust_object) { int ret; struct lttng_ust_abi_capture_bytecode *ust_bytecode = NULL;