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/XChgPnt.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/XChgPnt.c')
-rw-r--r-- | src/XChgPnt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/XChgPnt.c b/src/XChgPnt.c index 6123398..38d3cb1 100644 --- a/src/XChgPnt.c +++ b/src/XChgPnt.c @@ -61,11 +61,11 @@ SOFTWARE. #include "XIint.h" int -XChangePointerDevice(dpy, dev, xaxis, yaxis) - register Display *dpy; - XDevice *dev; - int xaxis; - int yaxis; +XChangePointerDevice( + register Display *dpy, + XDevice *dev, + int xaxis, + int yaxis) { xChangePointerDeviceReq *req; xChangePointerDeviceReply rep; |