pwm_out_rc_in fix sign-compare

This commit is contained in:
Daniel Agar 2017-08-28 16:07:35 -04:00 committed by Beat Küng
parent dd70892cb8
commit a3ccfe52ee

View File

@ -301,7 +301,7 @@ void serial_callback(void *context, char *buffer, size_t num_bytes)
if (num_bytes > 0) {
mavlink_message_t msg;
for (int i = 0; i < num_bytes; ++i) {
for (size_t i = 0; i < num_bytes; ++i) {
// The MAVLink app doesn't use the internal buffer functions
// and hence the first port can be used here.
if (mavlink_parse_char(MAVLINK_COMM_0, buffer[i], &msg, &serial_status)) {