From df6a4552e7b0ee6f57f71d33ebcf17ee183e5783 Mon Sep 17 00:00:00 2001
From: a2-stratford <alexander3.stratford@live.uwe.ac.uk>
Date: Mon, 2 Dec 2019 13:59:46 +0000
Subject: [PATCH] Update populate_stack.c to use snake_case

---
 userprog/populate_stack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/userprog/populate_stack.c b/userprog/populate_stack.c
index d66e30e..fdc2d96 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
-- 
GitLab