1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 22:35:23 +03:00

Fix CLI task output header alignment (#9081)

Fix CLI task output header alignment
This commit is contained in:
Michael Keller 2019-10-23 13:20:49 +13:00
parent 3a8a2f725a
commit 8238206be0

View file

@ -4709,7 +4709,7 @@ static void cliTasks(char *cmdline)
#ifndef MINIMAL_CLI #ifndef MINIMAL_CLI
if (systemConfig()->task_statistics) { if (systemConfig()->task_statistics) {
cliPrintLine("Task list rate/hz max/us avg/us maxload avgload total/ms"); cliPrintLine("Task list rate/hz max/us avg/us maxload avgload total/ms");
} else { } else {
cliPrintLine("Task list"); cliPrintLine("Task list");
} }