From 8b76dfc1290a6ef640ed0aabe1cecc2bcc37826c Mon Sep 17 00:00:00 2001
From: s2-fidan <Sude2.Fidan@live.uwe.ac.uk>
Date: Sun, 22 Jan 2023 13:51:54 +0000
Subject: [PATCH] delete comments

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

diff --git a/src/userprog/syscall.c b/src/userprog/syscall.c
index 4cdccfa..ecd8dc3 100644
--- a/src/userprog/syscall.c
+++ b/src/userprog/syscall.c
@@ -40,7 +40,7 @@ syscall_handler (struct intr_frame *f UNUSED)
 		get_argument(esp,argument,1);
 		syscall_exit(argument[0]);
 		break;
-    case SYS_EXEC: // 2 (TODO: Change to execute)
+    case SYS_EXEC: // 2 
         get_argument(esp,argument,1);
 		check_address((void *)argument[0]);
 		f->eax = syscall_exec((const char *)argument[0]);
-- 
GitLab