From: Warner Losh Date: Sat, 24 Apr 2021 03:35:15 +0000 (-0600) Subject: bsd-user: put back a break; that had gone missing... X-Git-Tag: v6.1.0-rc0~142^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=92ac45049b8c17b2ea659c9533951f391ac93744;p=thirdparty%2Fqemu.git bsd-user: put back a break; that had gone missing... Reviewed-by: Richard Henderson Signed-off-by: Warner Losh --- diff --git a/bsd-user/syscall.c b/bsd-user/syscall.c index adc3d21b542..4abff796c76 100644 --- 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;