Skip to content

Commit

Permalink
Fix missing semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
SwiftGust authored and vooon committed Oct 16, 2023
1 parent aaf0b1e commit 7e7e2f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mavros_extras/src/plugins/gps_status.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class GpsStatusPlugin : public plugin::PluginBase {
ros_msg->h_acc = mav_msg.h_acc;
ros_msg->v_acc = mav_msg.v_acc;
ros_msg->vel_acc = mav_msg.vel_acc;
ros_msg->hdg_acc = mav_msg.hdg_acc
ros_msg->hdg_acc = mav_msg.hdg_acc;
ros_msg->dgps_numch = mav_msg.dgps_numch;
ros_msg->dgps_age = mav_msg.dgps_age;
ros_msg->yaw = mav_msg.yaw;
Expand Down

0 comments on commit 7e7e2f6

Please sign in to comment.