ArduPlane: fix wrong printf format for 32 bits

"micros() - before" doesn't return a long value. Use "%u".
This commit is contained in:
Lucas De Marchi 2015-10-26 11:02:37 -02:00 committed by Randy Mackay
parent e9b6c76454
commit a6fd94c6fe

View File

@ -1277,6 +1277,6 @@ void Plane::load_parameters(void)
// Load all auto-loaded EEPROM variables
AP_Param::load_all();
AP_Param::convert_old_parameters(&conversion_table[0], ARRAY_SIZE(conversion_table));
cliSerial->printf("load_all took %luus\n", micros() - before);
cliSerial->printf("load_all took %uus\n", micros() - before);
}
}