diff --git a/userprog/populate_stack.c b/userprog/populate_stack.c index d66e30eacb75d47585caa2543ee804045e150484..fdc2d9629413704d1f4d7d48d13c60d39bf48087 100644 --- a/userprog/populate_stack.c +++ b/userprog/populate_stack.c @@ -50,6 +50,6 @@ void populate_stack(void* stack_pointer, int argc, char** argv) { } // Adds the move value to the stack pointer -static void move_stack_pointer(void** stack_pointer, int moveValue) { - *stack_pointer = *stack_pointer + moveValue; +static void move_stack_pointer(void** stack_pointer, int move_value) { + *stack_pointer = *stack_pointer + move_value; } \ No newline at end of file