From 0d005bf266e370dc3f10fb846865fb84f3ceb622 Mon Sep 17 00:00:00 2001 From: Florian Lehner Date: Thu, 16 Jan 2025 17:12:51 +0100 Subject: [PATCH] fixup: replace comma with semicolon Signed-off-by: Florian Lehner --- support/ebpf/integration_test.ebpf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/support/ebpf/integration_test.ebpf.c b/support/ebpf/integration_test.ebpf.c index 7bdf768a..0e788978 100644 --- a/support/ebpf/integration_test.ebpf.c +++ b/support/ebpf/integration_test.ebpf.c @@ -30,7 +30,8 @@ send_sample_traces(void *ctx, u64 pid, s32 kstack) trace->comm[3] = 1; trace->pid = pid; trace->tid = pid; - trace->kernel_stack_id = -1, trace->stack_len = 1; + trace->kernel_stack_id = -1; + trace->stack_len = 1; trace->frames[0] = (Frame){ .kind = FRAME_MARKER_NATIVE, .file_id = 1337,