summaryrefslogtreecommitdiff
path: root/src/c-client.xsl
diff options
context:
space:
mode:
authorJamey Sharp <jamey@minilop.net>2006-03-03 11:08:10 -0800
committerJamey Sharp <jamey@minilop.net>2006-03-03 11:08:10 -0800
commit29f9fe0fc805a1ec6860f167a45664cc1cf0c769 (patch)
tree1355f5342b580c93ecabd08cbfb9823ab594fd83 /src/c-client.xsl
parent255c21b17f61147388bab6e1d42623a008a4a8d2 (diff)
API/ABI change: XCBSendRequest returns the sequence number instead of using an out-parameter. Now 0 is a special sequence number indicating failure.
Diffstat (limited to 'src/c-client.xsl')
-rw-r--r--src/c-client.xsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c-client.xsl b/src/c-client.xsl
index 1e37ea9..c35fe33 100644
--- a/src/c-client.xsl
+++ b/src/c-client.xsl
@@ -615,7 +615,7 @@ authorization from the authors.
<l>xcb_parts[<xsl:value-of select="3 + position() * 2"/>].iov_len = -xcb_parts[<xsl:value-of select="2 + position() * 2"/>].iov_len &amp; 3;</l>
</xsl:for-each>
- <l>XCBSendRequest(c, &amp;xcb_ret.sequence, <!--
+ <l>xcb_ret.sequence = XCBSendRequest(c, <!--
--><xsl:choose>
<xsl:when test="@has-reply">XCB_REQUEST_CHECKED</xsl:when>
<xsl:otherwise>0</xsl:otherwise>