From 581364c651343e20142b7dda1850867cec853ae9 Mon Sep 17 00:00:00 2001 From: Peter Kaiser <peter.kaiser@kit.edu> Date: Fri, 10 Jun 2016 11:44:11 +0200 Subject: [PATCH] DebugDrawer: Fixed warning --- source/RobotAPI/components/DebugDrawer/DebugDrawerComponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/RobotAPI/components/DebugDrawer/DebugDrawerComponent.cpp b/source/RobotAPI/components/DebugDrawer/DebugDrawerComponent.cpp index 32a47f48b..f41d962b9 100644 --- a/source/RobotAPI/components/DebugDrawer/DebugDrawerComponent.cpp +++ b/source/RobotAPI/components/DebugDrawer/DebugDrawerComponent.cpp @@ -261,7 +261,7 @@ namespace armarx { SoPath* path = selectionNode->getPath(i); - for (unsigned int j = 0; j < path->getLength(); j++) + for (int j = 0; j < path->getLength(); j++) { SoNode* node = path->getNodeFromTail(j); if (!node) -- GitLab