-
Notifications
You must be signed in to change notification settings - Fork 43
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
tp_call.h fix field type for tracepoint event rclcpp_ring_buffer_enqueue #117
Conversation
Signed-off-by: Mattis Kieffer <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, that shouldn't be a pointer. Thanks for the PR!
The failures on aarch64 are due to Mimick and are expected, so this is good. Thanks for the fix! |
@Mergifyio backport jazzy |
✅ Backports have been created
|
…117) Signed-off-by: Mattis Kieffer <[email protected]> (cherry picked from commit 7e8d42e)
…117) (#119) Signed-off-by: Mattis Kieffer <[email protected]> (cherry picked from commit 7e8d42e) Co-authored-by: Mattis Kieffer <[email protected]>
@Mergifyio backport iron |
✅ Backports have been created
|
…117) Signed-off-by: Mattis Kieffer <[email protected]> (cherry picked from commit 7e8d42e)
…117) (#121) Signed-off-by: Mattis Kieffer <[email protected]> (cherry picked from commit 7e8d42e) Co-authored-by: Mattis Kieffer <[email protected]>
Reason for this pull request:
While trying to compile ros2 on my system with gcc-14 i got an integer conversion warning causing a compilation failure:
Proposed fix:
As far as i see it, the field type should match the argument type in this case.
After applying the proposed fix locally, the compilation succeeded.