summaryrefslogtreecommitdiff
path: root/src/XListDev.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/XListDev.c
parent3e99cc281509c70c9240e71ae55cf4e62c6569ba (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/XListDev.c')
-rw-r--r--src/XListDev.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/XListDev.c b/src/XListDev.c
index b9a617d..e98adaa 100644
--- a/src/XListDev.c
+++ b/src/XListDev.c
@@ -64,9 +64,9 @@ SOFTWARE.
#include "XIint.h"
XDeviceInfo *
-XListInputDevices(dpy, ndevices)
- register Display *dpy;
- int *ndevices;
+XListInputDevices(
+ register Display *dpy,
+ int *ndevices)
{
int size;
xListInputDevicesReq *req;
@@ -238,8 +238,7 @@ XListInputDevices(dpy, ndevices)
*/
void
-XFreeDeviceList(list)
- XDeviceInfo *list;
+XFreeDeviceList(XDeviceInfo *list)
{
if (list != NULL) {
XFree((char *)list);