AP_Param: Unify from print or println to printf.

This commit is contained in:
murata 2017-01-21 14:00:43 +09:00 committed by Andrew Tridgell
parent 60b63bb69e
commit 59454b0c6f
1 changed files with 1 additions and 1 deletions

View File

@ -967,7 +967,7 @@ bool AP_Param::save(bool force_save)
if (ofs+type_size((enum ap_var_type)phdr.type)+2*sizeof(phdr) >= _storage.size()) {
// we are out of room for saving variables
hal.console->println("EEPROM full");
hal.console->printf("EEPROM full\n");
return false;
}