8000 Fix some missing qwarnx calls by haesbaert · Pull Request #182 · elastic/quark · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix some missing qwarnx calls #182

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 4, 2025
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 bpf_queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ relo_param(struct btf *btf, int *loc, const char *func, const char *param)
{
*loc = btf_index_of_param(btf, func, param);
if (*loc == -1)
warnx("can't relocate parameter %s on function %s",
qwarnx("can't relocate parameter %s on function %s",
param, func);

return (*loc);
Expand Down
2 changes: 1 addition & 1 deletion btf.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ btf_index_of_param(struct btf *btf, const char *func, const char *param)
for (i = 0, bp = btf_params(t); i < btf_vlen(t); i++, bp++) {
cand = btf__name_by_offset(btf, bp->name_off 8000 );
if (cand == NULL) {
warnx("name for offset %d not found, "
qwarnx("name for offset %d not found, "
"this is likely a bug", bp->name_off);
continue;
}
Expand Down
2 changes: 1 addition & 1 deletion quark.c
Original file line number Diff line number Diff line change
Expand Up @@ -2653,7 +2653,7 @@ quark_queue_get_event(struct quark_queue *qq)
qev = raw_event_packet(qq, raw);
break;
default:
warnx("unhandled raw->type: %d", raw->type);
qwarnx("unhandled raw->type: %d", raw->type);
break;
}

Expand Down
0