Skip to content

Commit

Permalink
Fixing segfault due to missing string format parameter. (moveit#547)
Browse files Browse the repository at this point in the history
  • Loading branch information
henningkayser authored and v4hn committed Jul 13, 2017
1 parent 48ff7ce commit e906c40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moveit_core/planning_scene/src/planning_scene.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1783,7 +1783,7 @@ const Eigen::Affine3d& planning_scene::PlanningScene::getFrameTransform(const ro
collision_detection::World::ObjectConstPtr obj = getWorld()->getObject(id);
if (obj->shape_poses_.size() > 1)
{
logWarn("More than one shapes in object '%s'. Using first one to decide transform");
logWarn("More than one shapes in object '%s'. Using first one to decide transform", id.c_str());
return obj->shape_poses_[0];
}
else if (obj->shape_poses_.size() == 1)
Expand Down

0 comments on commit e906c40

Please sign in to comment.