From 0ca65b7b61df36cff58fe96dd22d0b968cbb1fd4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A1n=20Tomko?= Date: Tue, 15 Jan 2019 13:00:52 +0100 Subject: [PATCH] virnetdevip: Avoid cast align warning MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Commit 7282f455a got rid of the VIR_WARNINGS_NO_CAST_ALIGN macro when refactoring the code and broke the build with clang. Signed-off-by: Ján Tomko --- src/util/virnetdevip.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/util/virnetdevip.c b/src/util/virnetdevip.c index b6df422cd1..f39467f1d6 100644 --- a/src/util/virnetdevip.c +++ b/src/util/virnetdevip.c @@ -599,7 +599,9 @@ virNetDevIPCheckIPv6ForwardingCallback(struct nlmsghdr *resp, data->hasRARoutes = true; len -= NLMSG_ALIGN(nh->rtnh_len); + VIR_WARNINGS_NO_CAST_ALIGN nh = RTNH_NEXT(nh); + VIR_WARNINGS_RESET } } -- 2.47.2