Skip to content

Commit

Permalink
Fix: TRACETOOLS_TRACEPOINT args
Browse files Browse the repository at this point in the history
Signed-off-by: h-suzuki <[email protected]>
  • Loading branch information
h-suzuki-isp committed Mar 14, 2024
1 parent 282beb2 commit c992fa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rmw_connextdds_common/src/common/rmw_subscription.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ rmw_api_connextdds_take_serialized_message(
rmw_take,
subscription,
serialized_message,
(message_info ? message_info->source_timestamp : 0LL),
0LL,
*taken);

return sub_impl->take_serialized(serialized_message, nullptr, taken);
Expand Down Expand Up @@ -424,7 +424,7 @@ rmw_api_connextdds_take_serialized_message_with_info(
rmw_take,
subscription,
serialized_message,
(message_info ? message_info->source_timestamp : 0LL),
message_info->source_timestamp,
*taken);

return sub_impl->take_serialized(serialized_message, message_info, taken);
Expand Down

0 comments on commit c992fa1

Please sign in to comment.