Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit aa0ff5f

Browse files
committedOct 24, 2024·
fix(stats): Adjust size of Load column
1 parent 182d301 commit aa0ff5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎cores/esp32/freertos_stats.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void printRunningTasks(Print & printer) {
5353
);
5454
printer.printf("Num\t Name"
5555
#if CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS
56-
"\t Load"
56+
"\tLoad"
5757
#endif
5858
"\tPrio\t Free"
5959
#if CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID
@@ -72,7 +72,7 @@ void printRunningTasks(Print & printer) {
7272
#endif
7373
printer.printf("%3u\t%16s"
7474
#if CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS
75-
"\t%8lu%%"
75+
"\t%3lu%%"
7676
#endif
7777
"\t%4u\t%5lu"
7878
#if CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID

0 commit comments

Comments
 (0)
Please sign in to comment.