Skip to content

Commit

Permalink
Fix commas again
Browse files Browse the repository at this point in the history
  • Loading branch information
stanek-michal committed May 22, 2024
1 parent 5edf8d5 commit f8e66ab
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions non-GPL/Events/EventsTrace/EventsTrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,6 @@ static void out_process_fork(struct ebpf_process_fork_event *evt)
out_comma();

out_string("comm", evt->comm);
out_comma();

struct ebpf_varlen_field *field;
FOR_EACH_VARLEN_FIELD(evt->vl_fields, field)
Expand Down Expand Up @@ -887,7 +886,6 @@ static void out_process_tty_write(struct ebpf_process_tty_write_event *evt)
out_tty_dev("tty", &evt->tty);
out_comma();
out_string("comm", (const char *)&evt->comm);
out_comma();

struct ebpf_varlen_field *field;
FOR_EACH_VARLEN_FIELD(evt->vl_fields, field)
Expand Down Expand Up @@ -1029,7 +1027,6 @@ static void out_network_event(const char *name, struct ebpf_net_event *evt)
out_comma();

out_string("comm", (const char *)&evt->comm);
out_comma();

out_object_end();
out_newline();
Expand Down

0 comments on commit f8e66ab

Please sign in to comment.