summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSamanta Navarro <ferivoz@riseup.net>2020-10-03 11:38:13 +0000
committerSamanta Navarro <ferivoz@riseup.net>2020-10-03 11:38:13 +0000
commit0c31b8a29e1b4732f315a75f9b42a8345fafdc5f (patch)
treeb14fe7f68a532ffeb53478d261922a3666153c54 /src
parent029d5b5d705a27a9bb16fb7fb9b0d2b03dab424a (diff)
downloadxcb-proto-0c31b8a29e1b4732f315a75f9b42a8345fafdc5f.tar.gz
Fix typo in documentation
Signed-off-by: Samanta Navarro <ferivoz@riseup.net>
Diffstat (limited to 'src')
-rw-r--r--src/xproto.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xproto.xml b/src/xproto.xml
index dea48df..116781e 100644
--- a/src/xproto.xml
+++ b/src/xproto.xml
@@ -2624,7 +2624,7 @@ void my_example(xcb_connection_t *conn, xcb_screen_t *screen, xcb_cursor_t curso
if ((reply = xcb_grab_pointer_reply(conn, cookie, NULL))) {
if (reply->status == XCB_GRAB_STATUS_SUCCESS)
printf("successfully grabbed the pointer\\n");
- free(preply);
+ free(reply);
}
}
]]></example>