diff options
Diffstat (limited to 'xorg-server/dbe/dbe.c')
-rw-r--r-- | xorg-server/dbe/dbe.c | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/xorg-server/dbe/dbe.c b/xorg-server/dbe/dbe.c index e5d928d7b..c19f4a47f 100644 --- a/xorg-server/dbe/dbe.c +++ b/xorg-server/dbe/dbe.c @@ -116,16 +116,16 @@ static int ProcDbeGetVersion(ClientPtr client) { /* REQUEST(xDbeGetVersionReq); */ - xDbeGetVersionReply rep = { - .type = X_Reply, - .sequenceNumber = client->sequence, - .length = 0, - .majorVersion = DBE_MAJOR_VERSION, - .minorVersion = DBE_MINOR_VERSION - }; + xDbeGetVersionReply rep; REQUEST_SIZE_MATCH(xDbeGetVersionReq); + rep.type = X_Reply; + rep.length = 0; + rep.sequenceNumber = client->sequence; + rep.majorVersion = DBE_MAJOR_VERSION; + rep.minorVersion = DBE_MINOR_VERSION; + if (client->swapped) { swaps(&rep.sequenceNumber); } @@ -630,12 +630,10 @@ ProcDbeGetVisualInfo(ClientPtr client) length += pScrVisInfo[i].count * sizeof(xDbeVisInfo); } - rep = (xDbeGetVisualInfoReply) { - .type = X_Reply, - .sequenceNumber = client->sequence, - .length = bytes_to_int32(length), - .m = count - }; + rep.type = X_Reply; + rep.sequenceNumber = client->sequence; + rep.length = bytes_to_int32(length); + rep.m = count; if (client->swapped) { swaps(&rep.sequenceNumber); @@ -720,11 +718,7 @@ static int ProcDbeGetBackBufferAttributes(ClientPtr client) { REQUEST(xDbeGetBackBufferAttributesReq); - xDbeGetBackBufferAttributesReply rep = { - .type = X_Reply, - .sequenceNumber = client->sequence, - .length = 0 - }; + xDbeGetBackBufferAttributesReply rep; DbeWindowPrivPtr pDbeWindowPriv; int rc; @@ -740,6 +734,10 @@ ProcDbeGetBackBufferAttributes(ClientPtr client) rep.attributes = None; } + rep.type = X_Reply; + rep.sequenceNumber = client->sequence; + rep.length = 0; + if (client->swapped) { swaps(&rep.sequenceNumber); swapl(&rep.length); |