mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Xi: consistenly name reply structs "reply" instead of "rep"
Preparation for future use of generic reply assembly macros. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
committed by
Enrico Weigelt
parent
36503b11b7
commit
dbbbf14a83
@@ -97,7 +97,7 @@ ProcXGrabDevice(ClientPtr client)
|
||||
GrabMask mask;
|
||||
struct tmask tmp[EMASKSIZE];
|
||||
|
||||
xGrabDeviceReply rep = {
|
||||
xGrabDeviceReply reply = {
|
||||
.RepType = X_GrabDevice,
|
||||
};
|
||||
|
||||
@@ -115,12 +115,12 @@ ProcXGrabDevice(ClientPtr client)
|
||||
rc = GrabDevice(client, dev, stuff->other_devices_mode,
|
||||
stuff->this_device_mode, stuff->grabWindow,
|
||||
stuff->ownerEvents, stuff->time,
|
||||
&mask, XI, None, None, &rep.status);
|
||||
&mask, XI, None, None, &reply.status);
|
||||
|
||||
if (rc != Success)
|
||||
return rc;
|
||||
|
||||
return X_SEND_REPLY_SIMPLE(client, rep);
|
||||
return X_SEND_REPLY_SIMPLE(client, reply);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
||||
Reference in New Issue
Block a user