From 79c9cdd2cd0109885dd3838dae5e11c65ca23e3b Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 15 Jul 2006 15:18:35 +0000 Subject: [PATCH] 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 --- Gui/wm/wsxdnd.c | 2 +- Gui/wm/wsxdnd.h | 2 +- 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);