From e5eaea599ab16428c69912b6b3427ebe46707d7c Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Tue, 25 Nov 2008 14:05:51 -0500 Subject: [PATCH] Warning fix xf86info.c:11: warning: initialization makes integer from pointer without a cast --- hw/xfree86/dummylib/xf86info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/dummylib/xf86info.c b/hw/xfree86/dummylib/xf86info.c index 221a9d2bb..7db6817c3 100644 --- a/hw/xfree86/dummylib/xf86info.c +++ b/hw/xfree86/dummylib/xf86info.c @@ -8,5 +8,5 @@ #include "xf86Priv.h" /* Dummy variables */ -xf86InfoRec xf86Info = {NULL, }; +xf86InfoRec xf86Info;