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/XDevBell.c | |
parent | 6b055729fd0f89eedd2bf00befd8e42804f12b4a (diff) |
Mass reindent. Sorry.XORG-7_0_99_901
Diffstat (limited to 'src/XDevBell.c')
-rw-r--r-- | src/XDevBell.c | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/src/XDevBell.c b/src/XDevBell.c index 2b7669f..276a1b8 100644 --- a/src/XDevBell.c +++ b/src/XDevBell.c @@ -61,20 +61,20 @@ SOFTWARE. #include "XIint.h" int -XDeviceBell (dpy, dev, feedbackclass, feedbackid, percent) - register Display *dpy; - XDevice *dev; - XID feedbackclass, feedbackid; - int percent; - { - xDeviceBellReq *req; - XExtDisplayInfo *info = XInput_find_display (dpy); - - LockDisplay (dpy); +XDeviceBell(dpy, dev, feedbackclass, feedbackid, percent) + register Display *dpy; + XDevice *dev; + XID feedbackclass, feedbackid; + int percent; +{ + xDeviceBellReq *req; + XExtDisplayInfo *info = XInput_find_display(dpy); + + LockDisplay(dpy); if (_XiCheckExtInit(dpy, XInput_Add_XDeviceBell) == -1) return (NoSuchExtension); - GetReq(DeviceBell,req); + GetReq(DeviceBell, req); req->reqType = info->codes->major_opcode; req->ReqType = X_DeviceBell; req->deviceid = dev->device_id; @@ -85,5 +85,4 @@ XDeviceBell (dpy, dev, feedbackclass, feedbackid, percent) UnlockDisplay(dpy); SyncHandle(); return (Success); - } - +} |