diff options
author | Daniel Stone <daniel@fooishbar.org> | 2006-03-31 14:50:24 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2006-03-31 14:50:24 +0000 |
commit | f50ac4deec13dfd070715f636887e12f6301070f (patch) | |
tree | be5857de4d38d644938ad796fcfaab2c37b9f99f /src/XAllowDv.c | |
parent | 6b055729fd0f89eedd2bf00befd8e42804f12b4a (diff) |
Mass reindent. Sorry.XORG-7_0_99_901
Diffstat (limited to 'src/XAllowDv.c')
-rw-r--r-- | src/XAllowDv.c | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/src/XAllowDv.c b/src/XAllowDv.c index d745046..94a27ca 100644 --- a/src/XAllowDv.c +++ b/src/XAllowDv.c @@ -61,20 +61,20 @@ SOFTWARE. #include "XIint.h" int -XAllowDeviceEvents (dpy, dev, event_mode, time) - register Display *dpy; - XDevice *dev; - int event_mode; - Time time; - { - xAllowDeviceEventsReq *req; - XExtDisplayInfo *info = XInput_find_display (dpy); - - LockDisplay (dpy); +XAllowDeviceEvents(dpy, dev, event_mode, time) + register Display *dpy; + XDevice *dev; + int event_mode; + Time time; +{ + xAllowDeviceEventsReq *req; + XExtDisplayInfo *info = XInput_find_display(dpy); + + LockDisplay(dpy); if (_XiCheckExtInit(dpy, XInput_Initial_Release) == -1) return (NoSuchExtension); - GetReq(AllowDeviceEvents,req); + GetReq(AllowDeviceEvents, req); req->reqType = info->codes->major_opcode; req->ReqType = X_AllowDeviceEvents; req->deviceid = dev->device_id; @@ -84,5 +84,4 @@ XAllowDeviceEvents (dpy, dev, event_mode, time) UnlockDisplay(dpy); SyncHandle(); return (Success); - } - +} |