summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authordougb <dougb@FreeBSD.org>2002-11-17 08:54:29 +0000
committerdougb <dougb@FreeBSD.org>2002-11-17 08:54:29 +0000
commitfac6cd8832ae9e1a7c4f4935fdc4c115c273cb81 (patch)
tree2111b769add41b0e11c5f55e3fa115e3edca09be /lib
parentfc2660e3462872b226d857b6286a042076e9ffaf (diff)
downloadFreeBSD-src-fac6cd8832ae9e1a7c4f4935fdc4c115c273cb81.zip
FreeBSD-src-fac6cd8832ae9e1a7c4f4935fdc4c115c273cb81.tar.gz
goto break; != break;
I've no idea if this is the right behavior for the library, but this at least fixes the build, and matches what seems to be alfred's intent in the commit message for 1.19.
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/gen/sysconf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/sysconf.c b/lib/libc/gen/sysconf.c
index ecb833e..27729a6 100644
--- a/lib/libc/gen/sysconf.c
+++ b/lib/libc/gen/sysconf.c
@@ -256,15 +256,15 @@ do_NAME_MAX:
case _SC_AIO_LISTIO_MAX:
mib[0] = CTL_P1003_1B;
mib[1] = CTL_P1003_1B_AIO_LISTIO_MAX;
- goto break;
+ break;
case _SC_AIO_MAX:
mib[0] = CTL_P1003_1B;
mib[1] = CTL_P1003_1B_AIO_MAX;
- goto break;
+ break;
case _SC_AIO_PRIO_DELTA_MAX:
mib[0] = CTL_P1003_1B;
mib[1] = CTL_P1003_1B_AIO_PRIO_DELTA_MAX;
- goto break;
+ break;
case _SC_DELAYTIMER_MAX:
mib[0] = CTL_P1003_1B;
mib[1] = CTL_P1003_1B_DELAYTIMER_MAX;
OpenPOWER on IntegriCloud