diff options
author | Keith Packard <keithp@guitar.keithp.com> | 2007-02-15 22:23:16 -0800 |
---|---|---|
committer | Keith Packard <keithp@guitar.keithp.com> | 2007-02-17 15:16:11 -0800 |
commit | 8606aeb9b2ab2dafc11e64436db4d3a7e67dbcc0 (patch) | |
tree | 103a8772dc56dff5e040716892e65c66dba1dfdc /randr | |
parent | a88844eccb0e423e71d4fcb286866a026308babd (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.c | 2 |
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); |