From: Mathieu Desnoyers Date: Thu, 9 May 2024 17:49:37 +0000 (-0400) Subject: event notifier: Add missing static X-Git-Tag: v2.13.13~7 X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=80dfce3f9c507c8572e7bf96894ff95da65384e9;p=lttng-modules.git 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 --- 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) {