From 9d34097203e5b656096ad00270dd6f5afc2475ee Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Mon, 15 Aug 2016 22:09:04 +0200 Subject: [PATCH] remove typos --- hermit/arch/x86/kernel/tasks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hermit/arch/x86/kernel/tasks.c b/hermit/arch/x86/kernel/tasks.c index 15902421c..88e821bab 100644 --- a/hermit/arch/x86/kernel/tasks.c +++ b/hermit/arch/x86/kernel/tasks.c @@ -88,8 +88,8 @@ int create_default_frame(task_t* task, entry_point_t ep, void* arg, uint32_t cor if (BUILTIN_EXPECT(!task->stack, 0)) return -EINVAL; - kprintf("Task %d use use the memory region [%p - %p] as stack\n", task->id, task->stack, (char*) task->stack + DEFAULT_STACK_SIZE - 1); - kprintf("Task %d use use the memory region [%p - %p] as IST1\n", task->id, task->ist_addr, (char*) task->ist_addr + DEFAULT_STACK_SIZE - 1); + kprintf("Task %d use use the memory region [%p - %p] as stack\n", task->id, task->stack, (char*) task->stack + KERNEL_STACK_SIZE - 1); + kprintf("Task %d use use the memory region [%p - %p] as IST1\n", task->id, task->ist_addr, (char*) task->ist_addr + KERNEL_STACK_SIZE - 1); memset(task->stack, 0xCD, DEFAULT_STACK_SIZE);