From 9efcb7c56f997cf41341d47c861b99448927f4fd Mon Sep 17 00:00:00 2001 From: wim Date: Thu, 28 Jan 2010 20:54:00 +0000 Subject: [PATCH] fix warning --- kdl_parser/src/kdl_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdl_parser/src/kdl_parser.cpp b/kdl_parser/src/kdl_parser.cpp index d1b88ca..ae23ac4 100644 --- a/kdl_parser/src/kdl_parser.cpp +++ b/kdl_parser/src/kdl_parser.cpp @@ -106,7 +106,7 @@ RigidBodyInertia toKdl(boost::shared_ptr i) bool addChildrenToTree(boost::shared_ptr root, Tree& tree) { std::vector > children = root->child_links; - ROS_DEBUG("Link %s had %i children", root->name.c_str(), children.size()); + ROS_DEBUG("Link %s had %u children", root->name.c_str(), children.size()); // constructs the optional inertia RigidBodyInertia inert(0);