From 80dfce3f9c507c8572e7bf96894ff95da65384e9 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 9 May 2024 13:49:37 -0400 Subject: [PATCH] event notifier: Add missing static Mark capture_sequence() static because it is only used within the compile unit. Signed-off-by: Mathieu Desnoyers Change-Id: I003e5cf016fbf2f2df24f4550a6c285e020956d0 --- src/lttng-event-notifier-notification.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lttng-event-notifier-notification.c b/src/lttng-event-notifier-notification.c index 7d345acc..b0fe43d2 100644 --- a/src/lttng-event-notifier-notification.c +++ b/src/lttng-event-notifier-notification.c @@ -246,6 +246,7 @@ int capture_sequence_element_unsigned(uint8_t *ptr, return 0; } +static int capture_sequence(struct lttng_msgpack_writer *writer, struct lttng_interpreter_output *output) { -- 2.34.1