summaryrefslogtreecommitdiff
path: root/randr
diff options
context:
space:
mode:
authorKeith Packard <keithp@guitar.keithp.com>2007-02-15 22:23:16 -0800
committerKeith Packard <keithp@guitar.keithp.com>2007-02-17 15:16:11 -0800
commit8606aeb9b2ab2dafc11e64436db4d3a7e67dbcc0 (patch)
tree103a8772dc56dff5e040716892e65c66dba1dfdc /randr
parenta88844eccb0e423e71d4fcb286866a026308babd (diff)
RRConfigureOutputProperty is a variable length request.
Replace REQUEST_SIZE_MATCH with REQUEST_AT_LEAST_SIZE
Diffstat (limited to 'randr')
-rw-r--r--randr/rrproperty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/randr/rrproperty.c b/randr/rrproperty.c
index 916caf030..edfed1f47 100644
--- a/randr/rrproperty.c
+++ b/randr/rrproperty.c
@@ -410,7 +410,7 @@ ProcRRConfigureOutputProperty (ClientPtr client)
RROutputPtr output;
int num_valid;
- REQUEST_SIZE_MATCH(xRRConfigureOutputPropertyReq);
+ REQUEST_AT_LEAST_SIZE(xRRConfigureOutputPropertyReq);
output = LookupOutput (client, stuff->output, DixReadAccess);