Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
sjahr committed Aug 26, 2024
1 parent 4b173e7 commit f9ffff2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion moveit_core/robot_model/src/robot_model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1368,7 +1368,7 @@ const LinkModel* RobotModel::getRigidlyConnectedParentLinkModel(const LinkModel*
{
if (!link)
{
RCLCPP_DEBUG(getLogger().get_child("getRigidlyConnectedParentLink", "Link is NULL");
RCLCPP_DEBUG(getLogger().get_child("getRigidlyConnectedParentLink", "Link is NULL"));
return link;
}
const moveit::core::LinkModel* parent_link = link->getParentLinkModel();
Expand Down
2 changes: 1 addition & 1 deletion moveit_core/robot_state/src/robot_state.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ const LinkModel* RobotState::getRigidlyConnectedParentLinkModel(const std::strin
if (!body->hasSubframeTransform(frame))
{
RCLCPP_DEBUG(getLogger().get_child("getRigidlyConnectedParentLink",
"Body '%s' does not have subframe '%s', object.c_str(), frame.c_str());
"Body '%s' does not have subframe '%s'", object.c_str(), frame.c_str());
return nullptr;
}
link = body->getAttachedLink();
Expand Down

0 comments on commit f9ffff2

Please sign in to comment.