Browse Source

ArduPlane: use hal's vsnprintf

mission-4.1.18
Pat Hickey 12 years ago committed by Andrew Tridgell
parent
commit
54b98c0a7c
  1. 3
      ArduCopter/GCS_Mavlink.pde

3
ArduCopter/GCS_Mavlink.pde

@ -2127,7 +2127,8 @@ static void gcs_send_text_fmt(const prog_char_t *fmt, ...) @@ -2127,7 +2127,8 @@ static void gcs_send_text_fmt(const prog_char_t *fmt, ...)
fmtstr[i] = 0;
pending_status.severity = (uint8_t)SEVERITY_LOW;
va_start(arg_list, fmt);
vsnprintf((char *)pending_status.text, sizeof(pending_status.text), fmtstr, arg_list);
hal.util->vsnprintf((char *)pending_status.text,
sizeof(pending_status.text), fmtstr, arg_list);
va_end(arg_list);
mavlink_send_message(MAVLINK_COMM_0, MSG_STATUSTEXT, 0);
if (gcs3.initialised) {

Loading…
Cancel
Save