Skip to content

Commit

Permalink
Fix Clang warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Perron <jacob@openrobotics.org>
  • Loading branch information
jacobperron committed Aug 22, 2019
1 parent 12cabda commit aae3258
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/message_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ void MessageContext<visualization_msgs::msg::InteractiveMarkerUpdate>::getTfTran
getTfTransforms(msg->markers, open_marker_idx_);
getTfTransforms(msg->poses, open_pose_idx_);
if (isReady()) {
RCUTILS_LOG_DEBUG("Update message with seq_num=%lu is ready.", msg->seq_num);
RCUTILS_LOG_DEBUG("Update message with seq_num=%llu is ready.", msg->seq_num);
}
}

Expand All @@ -227,7 +227,7 @@ void MessageContext<visualization_msgs::srv::GetInteractiveMarkers::Response>::g
{
getTfTransforms(msg->markers, open_marker_idx_);
if (isReady()) {
RCUTILS_LOG_DEBUG("Response message with seq_num=%lu is ready.", msg->sequence_number);
RCUTILS_LOG_DEBUG("Response message with seq_num=%llu is ready.", msg->sequence_number);
}
}

Expand Down

0 comments on commit aae3258

Please sign in to comment.