AP_Mount: Unify from print or println to printf.

This commit is contained in:
murata 2017-01-21 13:57:33 +09:00 committed by Andrew Tridgell
parent 92eb179acf
commit 2d32211c81

View File

@ -30,7 +30,7 @@
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
void setup () {
hal.console->println("Unit test for AP_Mount. This sketch"
hal.console->printf("%s\n", "Unit test for AP_Mount. This sketch"
"has no functionality, it only tests build.");
}
void loop () {}