linux(4): Remove the unnecessary spaces.

MFC after:		2 weeks

(cherry picked from commit bed2ac27a1)
This commit is contained in:
Dmitry Chagin 2021-08-12 11:58:33 +03:00
parent 2c02511017
commit a1e6526440

View file

@ -235,7 +235,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:
@ -248,7 +248,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;