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:
Enrico Weigelt, metux IT consult
2025-12-04 16:11:24 +01:00
committed by Enrico Weigelt
parent 36503b11b7
commit dbbbf14a83
21 changed files with 138 additions and 138 deletions

View File

@@ -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);
}
/***********************************************************************