diff options
author | Ian Osgood <iano@quirkster.com> | 2006-12-02 08:42:24 -0800 |
---|---|---|
committer | Ian Osgood <iano@quirkster.com> | 2006-12-02 08:42:24 -0800 |
commit | 0561900cfe6738329dd271df93f38fec8f538789 (patch) | |
tree | d1483394206221d9da7bc1fbea383df687649786 | |
parent | 37b681288c18754037a00d1765fdbde456b1c1a5 (diff) | |
download | xcb-proto-0561900cfe6738329dd271df93f38fec8f538789.tar.gz xcb-proto-0561900cfe6738329dd271df93f38fec8f538789.tar.bz2 xcb-proto-0561900cfe6738329dd271df93f38fec8f538789.zip |
Fix ListOutputProperties protocol.
-rw-r--r-- | src/randr.xml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/randr.xml b/src/randr.xml index ab58f80..c613705 100644 --- a/src/randr.xml +++ b/src/randr.xml @@ -263,15 +263,14 @@ authorization from the authors. </reply> </request> - <!-- NOTE: num_atoms is currently unused. --> <request name="ListOutputProperties" opcode="10"> <field type="CARD32" name="output" /> <reply> - <field type="CARD8" name="num_properties" /> + <pad bytes="1" /> <field type="CARD16" name="num_atoms" /> <pad bytes="22" /> - <list type="ATOM" name="properties"> - <fieldref>num_properties</fieldref> + <list type="ATOM" name="atoms"> + <fieldref>num_atoms</fieldref> </list> </reply> </request> |