diff options
author | eadler <eadler@FreeBSD.org> | 2012-10-22 03:00:37 +0000 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2012-10-22 03:00:37 +0000 |
commit | 3f7a414911a892c8c84206394eb643cbde706d20 (patch) | |
tree | c45117cffaa16d0c405fe18e0a22e5a403277232 /lib/libc | |
parent | 4acd2b3e06da83dd8af23c49beb06a38077f7c4f (diff) | |
download | FreeBSD-src-3f7a414911a892c8c84206394eb643cbde706d20.zip FreeBSD-src-3f7a414911a892c8c84206394eb643cbde706d20.tar.gz |
remove duplicate semicolons where possible.
Approved by: cperciva
MFC after: 1 week
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/net/ip6opt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/net/ip6opt.c b/lib/libc/net/ip6opt.c index d999fd4..003c625 100644 --- a/lib/libc/net/ip6opt.c +++ b/lib/libc/net/ip6opt.c @@ -461,7 +461,7 @@ inet6_opt_append(void *extbuf, socklen_t extlen, int offset, u_int8_t type, int inet6_opt_finish(void *extbuf, socklen_t extlen, int offset) { - int updatelen = offset > 0 ? (1 + ((offset - 1) | 7)) : 0;; + int updatelen = offset > 0 ? (1 + ((offset - 1) | 7)) : 0; if (extbuf) { u_int8_t *padp; |