diff --git a/sys/amd64/linux/linux_sysvec.c b/sys/amd64/linux/linux_sysvec.c index 78739ae6d25..6f3f7863958 100644 --- a/sys/amd64/linux/linux_sysvec.c +++ b/sys/amd64/linux/linux_sysvec.c @@ -236,7 +236,7 @@ linux_set_syscall_retval(struct thread *td, int error) switch (error) { case 0: frame->tf_rax = td->td_retval[0]; - frame->tf_r10 = frame->tf_rcx; + frame->tf_r10 = frame->tf_rcx; break; case ERESTART: @@ -249,7 +249,7 @@ linux_set_syscall_retval(struct thread *td, int error) frame->tf_rip -= frame->tf_err; frame->tf_r10 = frame->tf_rcx; break; - + case EJUSTRETURN: break;