Skip to content

Commit

Permalink
fixing dirty tree
Browse files Browse the repository at this point in the history
Signed-off-by: Cosmin Cojocar <gcojocar@adobe.com>
  • Loading branch information
0xmilkmix authored and ccojocar committed Jan 22, 2024
1 parent 58b9313 commit 85d5b39
Show file tree
Hide file tree
Showing 2 changed files with 7,343 additions and 7,336 deletions.
4 changes: 2 additions & 2 deletions internal/pkg/daemon/bpfrecorder/bpf/recorder.bpf.c
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ int syscall__exit_group(struct trace_event_raw_sys_enter *ctx)
}

SEC("tracepoint/raw_syscalls/sys_enter")
int sys_enter(struct trace_event_raw_sys_enter * args)
int sys_enter(struct trace_event_raw_sys_enter *args)
{
// Sanity check for syscall ID range
u32 syscall_id = args->id;
Expand Down Expand Up @@ -719,7 +719,7 @@ int sys_enter(struct trace_event_raw_sys_enter * args)
return 0;
}

static inline bool is_filtered(char * comm)
static inline bool is_filtered(char *comm)
{
// No filter set
if (filter_name[0] == 0) {
Expand Down
Loading

0 comments on commit 85d5b39

Please sign in to comment.