aboutsummaryrefslogtreecommitdiff
path: root/src/lib/stack.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/stack.c')
-rw-r--r--src/lib/stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/stack.c b/src/lib/stack.c
index 0a6637f256..1f9e009944 100644
--- a/src/lib/stack.c
+++ b/src/lib/stack.c
@@ -31,7 +31,7 @@ int checkstack(void *top_of_stack, int core)
if (stack[0] != 0xDEADBEEF){
printk(BIOS_ERR, "Stack overrun on CPU%d."
"Increase stack from current %d bytes\n",
- CONFIG_STACK_SIZE, core);
+ core, CONFIG_STACK_SIZE);
return -1;
}