diff options
author | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2008-02-29 18:14:00 -0300 |
---|---|---|
committer | Peter Hutterer <peter@cs.unisa.edu.au> | 2008-05-20 15:10:03 +0930 |
commit | 145947ed603207e85a7fcb502f88717a22dfec55 (patch) | |
tree | 900e73f428f15007e010b1261aa7791b96e61561 /src/XGetProp.c | |
parent | 3e99cc281509c70c9240e71ae55cf4e62c6569ba (diff) |
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/XGetProp.c')
-rw-r--r-- | src/XGetProp.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/XGetProp.c b/src/XGetProp.c index 71d844b..7887257 100644 --- a/src/XGetProp.c +++ b/src/XGetProp.c @@ -62,11 +62,10 @@ SOFTWARE. #include "XIint.h" XEventClass * -XGetDeviceDontPropagateList(dpy, window, count) - register Display *dpy; - -Window window; - int *count; +XGetDeviceDontPropagateList( + register Display *dpy, + Window window, + int *count) { XEventClass *list = NULL; int rlen; |