Rover: fixed a build warning

This commit is contained in:
Andrew Tridgell 2013-01-13 20:05:14 +11:00
parent 8ac95d6034
commit ca1070f10e

View File

@ -436,7 +436,7 @@ static void NOINLINE send_statustext(mavlink_channel_t chan)
static bool telemetry_delayed(mavlink_channel_t chan)
{
uint32_t tnow = millis() >> 10;
if (tnow > g.telem_delay) {
if (tnow > (uint32_t)g.telem_delay) {
return false;
}
#if USB_MUX_PIN > 0