Skip to content
Snippets Groups Projects
Verified Commit 6756c3b0 authored by ja3-saxby's avatar ja3-saxby
Browse files

Add a very important accidentally-missed `break`

parent 266af207
No related branches found
No related tags found
2 merge requests!22Merge Feature/system calls,!11Implement create() syscall
...@@ -66,6 +66,7 @@ syscall_handler (struct intr_frame *f UNUSED) ...@@ -66,6 +66,7 @@ syscall_handler (struct intr_frame *f UNUSED)
break; break;
case SYSCALL_WAIT: case SYSCALL_WAIT:
syscall_wait(f); syscall_wait(f);
break;
case SYSCALL_CREATE: case SYSCALL_CREATE:
syscall_create(f); syscall_create(f);
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment