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 <florian.lehner@elastic.co>
  • Loading branch information
florianl committed Jan 16, 2025
1 parent f413ca7 commit f1b155b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions support/ebpf/integration_test.ebpf.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ 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->frames[0] = (Frame){
.kind = FRAME_MARKER_NATIVE,
.file_id = 1337,
.addr_or_line = 21,
trace->kernel_stack_id = -1;
trace->stack_len = 1;
trace->frames[0] = (Frame){
.kind = FRAME_MARKER_NATIVE,
.file_id = 1337,
.addr_or_line = 21,
};
send_trace(ctx, trace);

Expand Down

0 comments on commit f1b155b

Please sign in to comment.