From 622329ad4b72bb21355d00927d42490c41946ac5 Mon Sep 17 00:00:00 2001
From: a2-stratford <alexander3.stratford@live.uwe.ac.uk>
Date: Mon, 2 Dec 2019 14:04:24 +0000
Subject: [PATCH] Apply suggestion to userprog/populate_stack.c

---
 userprog/populate_stack.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/userprog/populate_stack.c b/userprog/populate_stack.c
index fdc2d96..67438b5 100644
--- a/userprog/populate_stack.c
+++ b/userprog/populate_stack.c
@@ -9,7 +9,7 @@
 #include "userprog/argument_parsing.h"
 
 
-void populate_stack(void* stack_pointer, int argc, char** argv) {
+void populate_stack(void** stack_pointer, int argc, char** argv) {
 	*stack_pointer = PHYS_BASE;
 	int i = argc;
     
-- 
GitLab