diff --git a/source/RobotAPI/components/KITProstheticHandUnit/KITProstheticHandUnit.cpp b/source/RobotAPI/components/KITProstheticHandUnit/KITProstheticHandUnit.cpp
index a36bdd9da8f92a45213f4b8a388893e03a5f7f9d..a47012e9cd16988958672ab6de5f3ece1aedd9d3 100644
--- a/source/RobotAPI/components/KITProstheticHandUnit/KITProstheticHandUnit.cpp
+++ b/source/RobotAPI/components/KITProstheticHandUnit/KITProstheticHandUnit.cpp
@@ -153,7 +153,7 @@ namespace armarx
             {
                 const std::uint64_t pos = std::clamp(
                                               static_cast<std::uint64_t>(pair.second * _driver->getMaxPosFingers()),
-                                              0, _driver->getMaxPosFingers());
+                                              0ul, _driver->getMaxPosFingers());
                 ARMARX_INFO << "set fingers " << pos;
                 _driver->sendFingerPWM(200, 2999, pos);
                 // fix until hw driver is fixed to handle multiple commands at the same time
@@ -163,7 +163,7 @@ namespace armarx
             {
                 const std::uint64_t pos = std::clamp(
                                               static_cast<std::uint64_t>(pair.second * _driver->getMaxPosThumb()),
-                                              0, _driver->getMaxPosThumb());
+                                              0ul, _driver->getMaxPosThumb());
                 ARMARX_INFO << "set thumb " << pos;
                 _driver->sendThumbPWM(200, 2999, pos);
                 // fix until hw driver is fixed to handle multiple commands at the same time