diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2007-08-05 16:11:10 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2007-08-05 16:11:10 +0000 |
commit | 3cb1bb925c9c06ee5a299267a99ecb386b048a2d (patch) | |
tree | 4acd4c0d2e9c34d201f2fa46156d0095cc094db2 /lib/libc/net | |
parent | ab440e28bf086d6e5b8f71ce5abbf839b457168f (diff) |
/*FALLTHRU*/ -> /* FALLTHROUGH */
Diffstat (limited to 'lib/libc/net')
-rw-r--r-- | lib/libc/net/res_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/net/res_init.c b/lib/libc/net/res_init.c index ef5926118a0..ebfc5f3db27 100644 --- a/lib/libc/net/res_init.c +++ b/lib/libc/net/res_init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: res_init.c,v 1.35 2006/09/23 04:56:43 ray Exp $ */ +/* $OpenBSD: res_init.c,v 1.36 2007/08/05 16:11:09 ray Exp $ */ /* * ++Copyright++ 1985, 1989, 1993 @@ -506,7 +506,7 @@ _res_init(int usercall) m = -1; break; } - /*FALLTHRU*/ + /* FALLTHROUGH */ default: m = sizeof(struct in6_addr) * NBBY; break; |