diff options
author | Adam Jackson <ajax@redhat.com> | 2008-11-25 14:05:51 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-11-25 15:05:19 -0500 |
commit | e5eaea599ab16428c69912b6b3427ebe46707d7c (patch) | |
tree | 709234a9705aacfebace7c23d9cf1914f54f0c84 | |
parent | 37072500f7bcf39e0d6aa2ceb5d1f2aeeab0b26b (diff) |
Warning fix
xf86info.c:11: warning: initialization makes integer from pointer
without a cast
-rw-r--r-- | hw/xfree86/dummylib/xf86info.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |