git: a1e652644099 - stable/13 - linux(4): Remove the unnecessary spaces.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 17 Jun 2022 19:38:12 UTC
The branch stable/13 has been updated by dchagin:
URL: https://cgit.FreeBSD.org/src/commit/?id=a1e652644099fe344d6ffb59497eb01c19a94357
commit a1e652644099fe344d6ffb59497eb01c19a94357
Author: Dmitry Chagin <dchagin@FreeBSD.org>
AuthorDate: 2021-08-12 08:58:33 +0000
Commit: Dmitry Chagin <dchagin@FreeBSD.org>
CommitDate: 2022-06-17 19:33:33 +0000
linux(4): Remove the unnecessary spaces.
MFC after: 2 weeks
(cherry picked from commit bed2ac27a14d39df713f004ea46cbe77fa853f86)
---
sys/amd64/linux/linux_sysvec.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/amd64/linux/linux_sysvec.c b/sys/amd64/linux/linux_sysvec.c
index b008b4b49c1c..6bb2bc5c61ff 100644
--- a/sys/amd64/linux/linux_sysvec.c
+++ b/sys/amd64/linux/linux_sysvec.c
@@ -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;