Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/nettrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ static void do_parse_args(int argc, char *argv[])
{
.lname = "min-latency", .dest = &trace_args->min_latency,
.type = OPTION_U32,
.desc = "filter by the minial time to live of the skb in us",
.desc = "filter by the minimal time to live of the skb in us",
},
{
.lname = "pkt-len", .dest = &trace_args->pkt_len,
Expand Down
2 changes: 1 addition & 1 deletion src/trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ int trace_prepare()
goto err;
}
if (!kernel_has_config("DEBUG_INFO_BTF_MODULES")) {
pr_warn("DEBUG_INFO_BTF_MODULES not enabled, some infomation, "
pr_warn("DEBUG_INFO_BTF_MODULES not enabled, some information, "
"such as nf_tables, maybe incorrect\n");
}
#else
Expand Down
1 change: 1 addition & 0 deletions utils/arg_parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ int parse_args(int argc, char *argv[], arg_config_t *config,
free(long_opts);
return 0;
err:
free(long_opts);
return -EINVAL;
help:
printf("%s: %s\n", config->name, config->summary);
Expand Down