diff options
author | Josh Triplett <josh@freedesktop.org> | 2006-09-23 14:17:52 -0700 |
---|---|---|
committer | Josh Triplett <josh@freedesktop.org> | 2006-09-23 14:17:52 -0700 |
commit | 9691890529fddc051c15e191a8a5f06017514c1c (patch) | |
tree | 44369ede5ccf255211c94ef8cb152fb14ff6dca5 /src/xcb_in.c | |
parent | 0a867d72337afa88f4ab453b6d3fbb519368c308 (diff) |
More fixups for incorrect API conversions by api_conv.pl
Diffstat (limited to 'src/xcb_in.c')
-rw-r--r-- | src/xcb_in.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xcb_in.c b/src/xcb_in.c index 3498684..604faab 100644 --- a/src/xcb_in.c +++ b/src/xcb_in.c @@ -427,8 +427,8 @@ xcb_generic_event_t *xcb_poll_for_event(xcb_connection_t *c, int *error) xcb_generic_error_t *xcb_request_check(xcb_connection_t *c, xcb_void_cookie_t cookie) { /* FIXME: this could hold the lock to avoid syncing unnecessarily, but - * that would require factoring the locking out of xcb_get_input_focus_t, - * xcb_get_input_focus_reply_t, and xcb_wait_for_reply_t. */ + * that would require factoring the locking out of xcb_get_input_focus, + * xcb_get_input_focus_reply, and xcb_wait_for_reply. */ xcb_generic_error_t *ret; void *reply; if(c->has_error) |