summaryrefslogtreecommitdiff
path: root/kern/task.c
diff options
context:
space:
mode:
Diffstat (limited to 'kern/task.c')
-rw-r--r--kern/task.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/task.c b/kern/task.c
index d2003017..e5b34d16 100644
--- a/kern/task.c
+++ b/kern/task.c
@@ -139,7 +139,7 @@ task_info(struct task *task)
list_for_each_entry(&task->threads, thread, task_node) {
printk("task: %s: %p %c %.2s:%02hu %s\n", task->name, thread,
thread_state_to_chr(thread), thread_schedclass_to_str(thread),
- thread_schedprio(thread), thread->name);
+ thread_priority(thread), thread->name);
}
spinlock_unlock(&task->lock);