summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-15 15:18:35 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-15 15:18:35 +0000
commit79c9cdd2cd0109885dd3838dae5e11c65ca23e3b (patch)
tree590fffd55233fd1008d6b1f2b5363ba98caefb4f /Gui
parent6acd2466cc3bf59b1fc6a89300e547c51fc61903 (diff)
downloadmpv-79c9cdd2cd0109885dd3838dae5e11c65ca23e3b.tar.bz2
mpv-79c9cdd2cd0109885dd3838dae5e11c65ca23e3b.tar.xz
Change function declararation w/o parameters to the correct foo(void) syntax.
patch by Stefan Huehner, stefan at huehner org git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19106 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/wm/wsxdnd.c2
-rw-r--r--Gui/wm/wsxdnd.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Gui/wm/wsxdnd.c b/Gui/wm/wsxdnd.c
index 31646627db..5056db5c53 100644
--- a/Gui/wm/wsxdnd.c
+++ b/Gui/wm/wsxdnd.c
@@ -29,7 +29,7 @@ Atom _XA_XdndTypeList;
Atom atom_support;
-void wsXDNDInitialize()
+void wsXDNDInitialize(void)
{
_XA_XdndAware = XInternAtom(wsDisplay, "XdndAware", False);
diff --git a/Gui/wm/wsxdnd.h b/Gui/wm/wsxdnd.h
index 19eaffd541..7fe3c3fd77 100644
--- a/Gui/wm/wsxdnd.h
+++ b/Gui/wm/wsxdnd.h
@@ -3,7 +3,7 @@
#define _XDND_H_
-void wsXDNDInitialize();
+void wsXDNDInitialize(void);
Bool wsXDNDProcessSelection(wsTWindow* wnd,XEvent *event);
Bool wsXDNDProcessClientMessage(wsTWindow* wnd, XClientMessageEvent *event);
void wsXDNDMakeAwareness(wsTWindow* window);