bsd-user: put back a break; that had gone missing...
authorWarner Losh <imp@bsdimp.com>
Sat, 24 Apr 2021 03:35:15 +0000 (21:35 -0600)
committerWarner 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

index adc3d21b542939a8f6528c1b3976334692f4512b..4abff796c766373ab93e87c1646839602db49ad6 100644 (file)
@@ -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;