summaryrefslogtreecommitdiff
path: root/src/XAllowDv.c
diff options
context:
space:
mode:
authorPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2008-02-29 18:14:00 -0300
committerPeter Hutterer <peter@cs.unisa.edu.au>2008-05-20 15:10:03 +0930
commit145947ed603207e85a7fcb502f88717a22dfec55 (patch)
tree900e73f428f15007e010b1261aa7791b96e61561 /src/XAllowDv.c
parent3e99cc281509c70c9240e71ae55cf4e62c6569ba (diff)
downloadxorg-lib-libXi-145947ed603207e85a7fcb502f88717a22dfec55.tar.gz
libXi ansification.
Thre are still two remaining compiler warnings, because of non matching function prototypes and function pointer arguments prototypes: src/XSndExEv.c:XSendExtensionEvent() variable register Status(**fp) (Display *, XEvent*, xEvent **, int *) doesn't match struct _XDisplay's: Status (*wire_vec[128])( /* vector for event to wire */ Display * /* dpy */, XEvent * /* re */, xEvent * /* event */ ); and src/XExtInt.c:xinput_extension_hooks field event_to_wire of type XExtensionHooks that has the prototype Status (*event_to_wire)( Display* /* display */, XEvent* /* re */, xEvent* /* event */ ); does not match Status _XiEventToWire( register Display *dpy, /* pointer to display structure */ register XEvent *re, /* pointer to client event */ register xEvent **event, /* wire protocol event */ register int *count); Signed-off-by: Peter Hutterer <peter@cs.unisa.edu.au>
Diffstat (limited to 'src/XAllowDv.c')
-rw-r--r--src/XAllowDv.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/XAllowDv.c b/src/XAllowDv.c
index 7fd2a07..bf961ee 100644
--- a/src/XAllowDv.c
+++ b/src/XAllowDv.c
@@ -61,11 +61,11 @@ SOFTWARE.
#include "XIint.h"
int
-XAllowDeviceEvents(dpy, dev, event_mode, time)
- register Display *dpy;
- XDevice *dev;
- int event_mode;
- Time time;
+XAllowDeviceEvents(
+ register Display *dpy,
+ XDevice *dev,
+ int event_mode,
+ Time time)
{
xAllowDeviceEventsReq *req;
XExtDisplayInfo *info = XInput_find_display(dpy);