Skip to content

Commit

Permalink
spell error fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
miyakoshi-dev committed Dec 3, 2024
1 parent 3bc7503 commit 7f11ed0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CARET_trace/include/caret_trace/tp.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ TRACEPOINT_EVENT(
TP_ARGS(
const void *, rmw_publisher_handle_arg,
const void *, message_arg,
int64_t, source_timsestamp_arg
int64_t, source_timestamp_arg
),
TP_FIELDS(
ctf_integer_hex(const void *, rmw_publisher_handle, rmw_publisher_handle_arg)
ctf_integer_hex(const void *, message, message_arg)
ctf_integer(const int64_t, source_timsestamp, source_timsestamp_arg)
ctf_integer(const int64_t, source_timestamp, source_timestamp_arg)
)
)
#else
Expand Down
4 changes: 2 additions & 2 deletions CARET_trace/src/ros_trace_points.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,7 @@ void ros_trace_rmw_take(
void ros_trace_rmw_publish(
const void * rmw_publisher_handle,
const void * message,
int64_t source_timsestamp
int64_t source_timestamp
)
{
static auto & context = Singleton<Context>::get_instance();
Expand All @@ -1235,7 +1235,7 @@ void ros_trace_rmw_publish(
}

if (trace_filter_is_rcl_publish_recorded) {
tracepoint(TRACEPOINT_PROVIDER, dds_write, rmw_publisher_handle, message, source_timsestamp);
tracepoint(TRACEPOINT_PROVIDER, dds_write, rmw_publisher_handle, message, source_timestamp);
#ifdef DEBUG_OUTPUT
std::cerr << "rmw_publish," <<
rmw_publisher_handle << "," <<
Expand Down

0 comments on commit 7f11ed0

Please sign in to comment.