diff options
Diffstat (limited to 'src/XListDev.c')
-rw-r--r-- | src/XListDev.c | 9 |
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); |