Skip to content

Commit b8a607e

Browse files
committed
Fixed typo.
1 parent 0cd1f1a commit b8a607e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/marker_server.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ void TwistServerNode::processFeedback(
226226
vel_msg.angular.z = std::min(vel_msg.angular.z, max_angular_velocity);
227227
vel_msg.angular.z = std::max(vel_msg.angular.z, -max_angular_velocity);
228228

229-
if (linear_drive_scale_map.find("x") != linear_drive_scale_map.end()
229+
if (linear_drive_scale_map.find("x") != linear_drive_scale_map.end())
230230
{
231231
vel_msg.linear.x = linear_drive_scale_map["x"] * feedback->pose.position.x;
232232
vel_msg.linear.x = std::min(vel_msg.linear.x, max_positive_linear_velocity_map["x"]);

0 commit comments

Comments
 (0)