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

Correct a copy-paste mistake in syscall.c

parent 89c3f3c8
No related branches found
No related tags found
1 merge request!22Merge Feature/system calls
...@@ -65,7 +65,7 @@ syscall_handler (struct intr_frame *f UNUSED) ...@@ -65,7 +65,7 @@ syscall_handler (struct intr_frame *f UNUSED)
syscall_exec(f); syscall_exec(f);
break; break;
case SYSCALL_WAIT: case SYSCALL_WAIT:
syscall_exec(f); syscall_wait(f);
break; break;
default: default:
printf ("WARNING: Invalid Syscall (%d)\n", syscall_number); printf ("WARNING: Invalid Syscall (%d)\n", syscall_number);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment