projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa05463
)
bsd-user: put back a break; that had gone missing...
author
Warner Losh
<imp@bsdimp.com>
Sat, 24 Apr 2021 03:35:15 +0000
(21:35 -0600)
committer
Warner Losh
<imp@bsdimp.com>
Fri, 30 Apr 2021 15:13:16 +0000
(09:13 -0600)
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
bsd-user/syscall.c
patch
|
blob
|
history
diff --git
a/bsd-user/syscall.c
b/bsd-user/syscall.c
index adc3d21b542939a8f6528c1b3976334692f4512b..4abff796c766373ab93e87c1646839602db49ad6 100644
(file)
--- a/
bsd-user/syscall.c
+++ b/
bsd-user/syscall.c
@@
-199,6
+199,7
@@
static int sysctl_oldcvt(void *holdp, size_t holdlen, uint32_t kind)
#else
case CTLTYPE_LONG:
*(uint64_t *)holdp = tswap64(*(long *)holdp);
+ break;
case CTLTYPE_ULONG:
*(uint64_t *)holdp = tswap64(*(unsigned long *)holdp);
break;