Skip to content

Commit

Permalink
fixed compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
VivaanBahl committed Nov 14, 2018
1 parent a9927b5 commit 632f882
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ void get_sensor_period(int sensor_num)
int err = freespace_sendMessage(device, &message);
if (err != FREESPACE_SUCCESS)
{
ROS_ERROR("Error sending sensor period get request")
ROS_ERROR("Error sending sensor period get request");
ROS_ERROR("%i", err);
}

Expand All @@ -237,7 +237,7 @@ void get_sensor_period(int sensor_num)
err = freespace_readMessage(device, &message, 1000);
if (err != FREESPACE_SUCCESS)
{
ROS_ERROR("Error reading sensor period response")
ROS_ERROR("Error reading sensor period response");
ROS_ERROR("%i", err);
}

Expand All @@ -263,7 +263,7 @@ void set_sensor_period(int sensor_num, int period_ms)
int err = freespace_sendMessage(device, &message);
if (err != FREESPACE_SUCCESS)
{
ROS_ERROR("Error sending sensor period get request")
ROS_ERROR("Error sending sensor period get request");
ROS_ERROR("%i", err);
}
}
Expand Down

0 comments on commit 632f882

Please sign in to comment.