Skip to content

Commit

Permalink
fixup: replace comma with semicolon
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Lehner <[email protected]>
  • Loading branch information
florianl committed Jan 16, 2025
1 parent f413ca7 commit 0d005bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion support/ebpf/integration_test.ebpf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 0d005bf

Please sign in to comment.