Skip to content

Commit

Permalink
use proper bool
Browse files Browse the repository at this point in the history
Co-authored-by: Lovel Rishi <[email protected]>
  • Loading branch information
stanek-michal and lrishi committed Aug 25, 2022
1 parent 0fddd9b commit e74a59d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion non-GPL/Events/EventsTrace/EventsTrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ int main(int argc, char **argv)
if (g_features_autodetect)
ebpf_detect_system_features(&opts.features);

err = ebpf_event_ctx__new(&ctx, event_ctx_callback, opts, 0);
err = ebpf_event_ctx__new(&ctx, event_ctx_callback, opts, /* dry_run= */ false);

if (err < 0) {
fprintf(stderr, "Could not create event context: %d %s\n", err, strerror(-err));
Expand Down

0 comments on commit e74a59d

Please sign in to comment.