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

Broken build fix, oops!

This commit is contained in:
Simon Rasmussen
2018-03-01 10:58:16 +01:00
committed by GitHub
parent 24d4406c91
commit 7eaa51839a

View File

@@ -15,7 +15,7 @@ void URScriptHandler::urscriptInterface(const std_msgs::String::ConstPtr& msg)
LOG_INFO("Message received"); LOG_INFO("Message received");
std::string str(msg->data); std::string str(msg->data);
if (str.back() != '\n') if (str.back() != '\n')
str.append('\n'); str.append("\n");
switch (state_) switch (state_)
{ {