diff options
author | marha <marha@users.sourceforge.net> | 2012-08-01 08:05:10 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-08-01 08:05:10 +0200 |
commit | 0009081c420a7549d5d124d2497b0d8d7f0820f9 (patch) | |
tree | 12308713db832f50e74390ecf8ca2b05a60bcb6e /xorg-server/randr/rrscreen.c | |
parent | 949282a6e80256ab56a1e95e484886873c7c0e4a (diff) | |
download | vcxsrv-0009081c420a7549d5d124d2497b0d8d7f0820f9.tar.gz vcxsrv-0009081c420a7549d5d124d2497b0d8d7f0820f9.tar.bz2 vcxsrv-0009081c420a7549d5d124d2497b0d8d7f0820f9.zip |
Solved compile errors
Diffstat (limited to 'xorg-server/randr/rrscreen.c')
-rw-r--r-- | xorg-server/randr/rrscreen.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/xorg-server/randr/rrscreen.c b/xorg-server/randr/rrscreen.c index 45c5139c9..c11882b53 100644 --- a/xorg-server/randr/rrscreen.c +++ b/xorg-server/randr/rrscreen.c @@ -395,17 +395,17 @@ rrGetMultiScreenResources(ClientPtr client, Bool query, ScreenPtr pScreen) ErrorF("reporting %d %d %d %d\n", total_crtcs, total_outputs, total_modes, total_name_len); pScrPriv = rrGetScrPriv(pScreen); - rep = (xRRGetScreenResourcesReply) { - .type = X_Reply, - .sequenceNumber = client->sequence, - .length = 0, - .timestamp = pScrPriv->lastSetTime.milliseconds, - .configTimestamp = pScrPriv->lastConfigTime.milliseconds, - .nCrtcs = total_crtcs, - .nOutputs = total_outputs, - .nModes = total_modes, - .nbytesNames = total_name_len - }; + + rep.type = X_Reply; + rep.sequenceNumber = client->sequence; + rep.length = 0; + rep.timestamp = pScrPriv->lastSetTime.milliseconds; + rep.configTimestamp = pScrPriv->lastConfigTime.milliseconds; + rep.nCrtcs = total_crtcs; + rep.nOutputs = total_outputs; + rep.nModes = total_modes; + rep.nbytesNames = total_name_len; + rep.length = (total_crtcs + total_outputs + total_modes * bytes_to_int32(SIZEOF(xRRModeInfo)) + bytes_to_int32(rep.nbytesNames)); |