From 3d1384a4add389c38f8554130e8dec2e2d06009d Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Mon, 15 Mar 2021 15:58:13 -0400 Subject: [PATCH] Fix: set_ust_capture: missing ABI rename MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- src/bin/lttng-sessiond/ust-app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1