summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kern/task.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/task.c b/kern/task.c
index c1780a4d..6e8eb5bf 100644
--- a/kern/task.c
+++ b/kern/task.c
@@ -124,7 +124,7 @@ task_info(struct task *task)
spinlock_lock(&task->lock);
- printk("task: name: %s, threads :\n", task->name);
+ printk("task: name: %s, threads:\n", task->name);
list_for_each_entry(&task->threads, thread, task_node)
printk("task: %s: %s\n", task->name, thread->name);