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 6c918ac ("Remove not used oti_flags from
struct os_task_info").
  • Loading branch information
apc067 authored and kasjer committed Oct 30, 2024
1 parent f860739 commit 7eb9a8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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",
"task", "pri", "tid", "runtime", "csw", "stksz", "stkuse",
"lcheck", "ncheck", "flg");
streamer_printf(streamer, "%8s %3s %3s %8s %8s %8s %8s %8s %8s\n",
"task", "pri", "tid", "runtime", "csw", "stksz", "stkuse",
"lcheck", "ncheck");
while (1) {
prev_task = os_task_info_get_next(prev_task, &oti);
if (prev_task == NULL) {
Expand Down

0 comments on commit 7eb9a8e

Please sign in to comment.