[libvirt] [PATCH] virnetdevip: Avoid cast align warning

Ján Tomko jtomko at redhat.com
Tue Jan 15 12:04:17 UTC 2019


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 <jtomko at redhat.com>
---
Pushed as a build breaker fix.

 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.16.4




More information about the libvir-list mailing list