From c9277ebb410ccfad0f7c2d0104bbcb0f7407ec9a Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Tue, 18 Dec 2018 19:32:14 -0500 Subject: [PATCH] zebra: Fixup spaces/tabs issue found by CI in rt_socket.c Cleanup the space/tabs issues found by CI in rt_socket.c so it stops complaining at us. Signed-off-by: Donald Sharp --- zebra/rt_socket.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/zebra/rt_socket.c b/zebra/rt_socket.c index 5ce1ddfd4..29e9bf82f 100644 --- a/zebra/rt_socket.c +++ b/zebra/rt_socket.c @@ -204,10 +204,10 @@ static int kernel_rtm(int cmd, const struct prefix *p, #ifdef KAME #define SET_IN6_LINKLOCAL_IFINDEX(a, i) \ - do { \ - (a).s6_addr[2] = ((i) >> 8) & 0xff; \ - (a).s6_addr[3] = (i)&0xff; \ - } while (0) + do { \ + (a).s6_addr[2] = ((i) >> 8) & 0xff; \ + (a).s6_addr[3] = (i)&0xff; \ + } while (0) if (IN6_IS_ADDR_LINKLOCAL(&sin_gate.sin6.sin6_addr)) SET_IN6_LINKLOCAL_IFINDEX( -- 2.39.2