summaryrefslogtreecommitdiff
path: root/src/XDevBell.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/XDevBell.c')
-rw-r--r--src/XDevBell.c25
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);
- }
-
+}