1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-10 01:50:46 +02:00

fixed requestProgram function in script sender not returning correctly

This commit is contained in:
Tristan Schnell
2019-06-12 10:36:49 +02:00
parent 75d6ae0a19
commit b2503352a9

View File

@@ -93,13 +93,13 @@ private:
else else
{ {
LOG_WARN("Received unexpected message on script request port "); LOG_WARN("Received unexpected message on script request port ");
return false;
} }
} }
else else
{ {
LOG_WARN("Could not read on script request port"); LOG_WARN("Could not read on script request port");
} }
return false;
} }
void sendProgram() void sendProgram()