Skip to content

Commit

Permalink
Address compilattion error
Browse files Browse the repository at this point in the history
  • Loading branch information
sjahr committed Nov 22, 2023
1 parent ef3575f commit 6130b20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ bool PlanningPipeline::generatePlan(const planning_scene::PlanningSceneConstPtr&
// If planner does not succeed, break chain and return false
if (!res.error_code)
{
RCLCPP_ERROR(node_->get_logger(), "Planner '%s' failed", planner->getDescription());
RCLCPP_ERROR(node_->get_logger(), "Planner '%s' failed", planner->getDescription().c_str());
break;
}
}
Expand Down

0 comments on commit 6130b20

Please sign in to comment.