Browse Source

SIM_AirSim: correct format string issue

c415-sdk
Peter Barker 5 years ago committed by Andrew Tridgell
parent
commit
acd03c6636
  1. 4
      libraries/SITL/SIM_AirSim.cpp

4
libraries/SITL/SIM_AirSim.cpp

@ -73,9 +73,9 @@ void AirSim::send_servos(const struct sitl_input &input) @@ -73,9 +73,9 @@ void AirSim::send_servos(const struct sitl_input &input)
if (send_ret != sizeof(pkt)) {
if (send_ret <= 0) {
printf("Unable to send servo output to %s:%u - Error: %s, Return value: %ld\n",
airsim_ip, airsim_control_port, strerror(errno), send_ret);
airsim_ip, airsim_control_port, strerror(errno), (long)send_ret);
} else {
printf("Sent %ld bytes instead of %ld bytes\n", send_ret, sizeof(pkt));
printf("Sent %ld bytes instead of %lu bytes\n", (long)send_ret, (unsigned long)sizeof(pkt));
}
}
}

Loading…
Cancel
Save