summaryrefslogtreecommitdiff
path: root/src/arch/x86/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/thread.c')
-rw-r--r--src/arch/x86/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/thread.c b/src/arch/x86/thread.c
index 0a11141d33..b1cd99fe99 100644
--- a/src/arch/x86/thread.c
+++ b/src/arch/x86/thread.c
@@ -47,7 +47,7 @@ void arch_prepare_thread(struct thread *t,
stack = push_stack(stack, (uintptr_t)arg);
stack = push_stack(stack, (uintptr_t)0);
stack = push_stack(stack, (uintptr_t)thread_entry);
- /* Make room for the registers. Ignore intial values. */
+ /* Make room for the registers. Ignore initial values. */
stack -= sizeof(struct pushad_regs);
t->stack_current = stack;