Skip to content

Commit

Permalink
sys/shell: Fix the Tasks table header row
Browse files Browse the repository at this point in the history
This commit removes the "flg" label from the Tasks table header, after the
column itself was removed in commit 64e8e16 ("Remove not used oti_flags from
struct os_task_info").
  • Loading branch information
apc067 committed Oct 29, 2024
1 parent 64e8e16 commit 4fdff4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sys/shell/src/shell_os.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ shell_os_tasks_display_cmd(const struct shell_cmd *cmd, int argc, char **argv,

streamer_printf(streamer, "Tasks: \n");
prev_task = NULL;
streamer_printf(streamer, "%8s %3s %3s %8s %8s %8s %8s %8s %8s %3s\n",
streamer_printf(streamer, "%8s %3s %3s %8s %8s %8s %8s %8s %8s\n",
"task", "pri", "tid", "runtime", "csw", "stksz", "stkuse",
"lcheck", "ncheck", "flg");
"lcheck", "ncheck");
while (1) {
prev_task = os_task_info_get_next(prev_task, &oti);
if (prev_task == NULL) {
Expand Down

0 comments on commit 4fdff4d

Please sign in to comment.