diff options
Diffstat (limited to 'nx-X11/lib/X11/GetKCnt.c')
-rw-r--r-- | nx-X11/lib/X11/GetKCnt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nx-X11/lib/X11/GetKCnt.c b/nx-X11/lib/X11/GetKCnt.c index 3a1cee6f9..17f487fbe 100644 --- a/nx-X11/lib/X11/GetKCnt.c +++ b/nx-X11/lib/X11/GetKCnt.c @@ -30,15 +30,15 @@ in this Software without prior written authorization from The Open Group. #include "Xlibint.h" int -XGetKeyboardControl (dpy, state) - register Display *dpy; - register XKeyboardState *state; - { +XGetKeyboardControl ( + register Display *dpy, + register XKeyboardState *state) +{ xGetKeyboardControlReply rep; register xReq *req; LockDisplay(dpy); GetEmptyReq (GetKeyboardControl, req); - (void) _XReply (dpy, (xReply *) &rep, + (void) _XReply (dpy, (xReply *) &rep, (SIZEOF(xGetKeyboardControlReply) - SIZEOF(xReply)) >> 2, xTrue); state->key_click_percent = rep.keyClickPercent; |