linux(4): Remove the unnecessary spaces.

MFC after:		2 weeks
This commit is contained in:
Dmitry Chagin 2021-08-12 11:58:33 +03:00
parent 71854d9b2b
commit bed2ac27a1

View File

@ -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;