From f1868b430993bce309ba068f323c61e32006f7ea Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Fri, 21 Aug 2015 14:15:54 +0000 Subject: [PATCH] Turn off gcc's uninitialized warnings for this code. They can be fixed, but really do appear to be false alarms. --- usr.sbin/hyperv/Makefile.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.sbin/hyperv/Makefile.inc b/usr.sbin/hyperv/Makefile.inc index 265f86d1ed55..edb012926dd1 100644 --- a/usr.sbin/hyperv/Makefile.inc +++ b/usr.sbin/hyperv/Makefile.inc @@ -1,3 +1,4 @@ # $FreeBSD$ +CFLAGS.gcc+= -Wno-uninitialized .include "../Makefile.inc"