diff options
author | Jamey Sharp <jamey@minilop.net> | 2006-02-27 00:54:59 -0800 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2006-02-27 00:54:59 -0800 |
commit | ff665b57266b9e7e9b9a366272c2115bbd516173 (patch) | |
tree | 762d0e656c89a92d02a5b1cd744e4ee7f65e5989 | |
parent | 50acfeae36f5f67e8b92fd7610141c489ee348c5 (diff) |
In struct XCBReplyData, change void *data to pthread_cond_t *data. That was dumb.
-rw-r--r-- | src/xcb_in.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xcb_in.c b/src/xcb_in.c index 76990f3..92bc0bf 100644 --- a/src/xcb_in.c +++ b/src/xcb_in.c @@ -55,7 +55,7 @@ typedef struct pending_reply { typedef struct XCBReplyData { unsigned int request; - void *data; + pthread_cond_t *data; } XCBReplyData; static int match_reply(const void *request, const void *data) |