Skip to content
Snippets Groups Projects
Commit 92ac4504 authored by Warner Losh's avatar Warner Losh
Browse files

bsd-user: put back a break; that had gone missing...


Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
Signed-off-by: default avatarWarner Losh <imp@bsdimp.com>
parent fa054637
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment