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]>
  • Loading branch information
mat-kie authored May 21, 2024
1 parent c0e59c4 commit 7e8d42e
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 @@ -477,7 +477,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 7e8d42e

Please sign in to comment.