Skip to content
Snippets Groups Projects
Commit aa3208af authored by a2-stratford's avatar a2-stratford
Browse files

Fixed mising semicolon

parent 8e81ff7e
No related branches found
No related tags found
1 merge request!5Alex/6 implement populate stack process
......@@ -44,7 +44,7 @@ void populate_stack(void** stack_pointer, int argc, char** argv) {
move_stack_pointer(*stack_pointer, 4); //Moves the stack pointer forwards 4
// TODO: Test if still required in later version
(*(uintptr_t **)(*stack_pointer)) = *stack_pointer
(*(uintptr_t **)(*stack_pointer)) = *stack_pointer;
move_stack_pointer(*stack_pointer, -4); //Moves the stack pointer back 4
*(int *)(*stack_pointer) = argc;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment