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/XGetBMap.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/XGetBMap.c')
-rw-r--r-- | src/XGetBMap.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/XGetBMap.c b/src/XGetBMap.c index 15cad74..6b612be 100644 --- a/src/XGetBMap.c +++ b/src/XGetBMap.c @@ -66,11 +66,11 @@ SOFTWARE. #define MIN(a, b) ((a) < (b) ? (a) : (b)) int -XGetDeviceButtonMapping(dpy, device, map, nmap) - register Display *dpy; - XDevice *device; - unsigned char map[]; - unsigned int nmap; +XGetDeviceButtonMapping( + register Display *dpy, + XDevice *device, + unsigned char map[], + unsigned int nmap) { int status = 0; unsigned char mapping[256]; /* known fixed size */ |