diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-12-12 22:38:26 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2015-02-10 18:14:45 -0800 |
commit | 4a758f59a8a65c313244e06852745c8e180ff247 (patch) | |
tree | 7a84a10a44790ec502153ca78c8fce7ff7ffddea /hw/dmx | |
parent | a0e44ddfb0c641e7896a55abf26621ae3d17e337 (diff) |
dmx: include header for DMXExtensionInit() in dmx.c
Gets rid of gcc 4.8 warning:
dmx.c:1193:1: warning: no previous prototype for ‘DMXExtensionInit’ [-Wmissing-prototypes]
DMXExtensionInit(void)
^
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Rémi Cardona <remi@gentoo.org>
Reviewed-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw/dmx')
-rw-r--r-- | hw/dmx/dmx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/dmx/dmx.c b/hw/dmx/dmx.c index 99e970cb9..2988df33a 100644 --- a/hw/dmx/dmx.c +++ b/hw/dmx/dmx.c @@ -55,6 +55,7 @@ #include "extinit.h" #include "opaque.h" +#include "dmx.h" #include "dmxextension.h" #include <X11/extensions/dmxproto.h> #include <X11/extensions/dmx.h> |