Skip to content

Commit

Permalink
Fix type for buffer index argument in tracepoint event declaration. (#…
Browse files Browse the repository at this point in the history
…117)

Signed-off-by: Mattis Kieffer <[email protected]>
(cherry picked from commit 7e8d42e)
  • Loading branch information
mat-kie authored and mergify[bot] committed Jun 14, 2024
1 parent fb24070 commit 868ea78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracetools/include/tracetools/tp_call.h
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ TRACEPOINT_EVENT(
),
TP_FIELDS(
ctf_integer_hex(const void *, buffer, buffer_arg)
ctf_integer(const uint64_t *, index, index_arg)
ctf_integer(const uint64_t, index, index_arg)
ctf_integer(const uint64_t, size, size_arg)
ctf_integer(const int, overwritten, (overwritten_arg ? 1 : 0))
)
Expand Down

0 comments on commit 868ea78

Please sign in to comment.