From 422fa64be3d173171e687ad9d9cf9fb5e0ca392d Mon Sep 17 00:00:00 2001 From: "Pedro F. Giffuni" Date: Wed, 20 Apr 2016 16:03:53 +0000 Subject: [PATCH] Minor indentation issue. --- lib/libc/net/ip6opt.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/libc/net/ip6opt.c b/lib/libc/net/ip6opt.c index c2d292f2d96..db3f8ce66c3 100644 --- a/lib/libc/net/ip6opt.c +++ b/lib/libc/net/ip6opt.c @@ -199,8 +199,7 @@ inet6_option_alloc(struct cmsghdr *cmsg, int datalen, int multx, int plusy) /* calculate pad length before the option. */ off = bp - (u_char *)eh; - padlen = roundup2(off % multx, multx) - - (off % multx); + padlen = roundup2(off % multx, multx) - (off % multx); padlen += plusy; padlen %= multx; /* keep the pad as short as possible */ /* insert padding */