1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #369 from LudwigOrtmann/ps_fix_indent

fix table header indentation
This commit is contained in:
Christian Mehlis 2013-11-21 13:40:47 -08:00
commit b355953929

View File

@ -43,7 +43,7 @@ void thread_print_all(void)
int i;
int overall_stacksz = 0;
printf("\tpid | %-21s| %-9sQ | pri | stack ( used) location | runtime | switches \n", "name", "state");
printf("\tpid | %-21s| %-9sQ | pri | stack ( used) location | runtime | switches \n", "name", "state");
for (i = 0; i < MAXTHREADS; i++) {
tcb_t *p = (tcb_t *)sched_threads[i];