diff options
author | Jamey Sharp <jamey@minilop.net> | 2006-09-22 15:37:49 -0700 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2006-09-22 15:37:49 -0700 |
commit | 91568d7070e2c2400dfdbdff515f51da74ca3701 (patch) | |
tree | ba764ca86f268946d6b241e23fcc80f1c7907ff8 /src | |
parent | 2538acd8c89d73e8c074849c63857cb899a29bbb (diff) |
Make xcb_conn.c agree that XCBSetupReq is now XCBSetupRequest.
Diffstat (limited to 'src')
-rw-r--r-- | src/xcb_conn.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xcb_conn.c b/src/xcb_conn.c index de1f6e4..c00eccf 100644 --- a/src/xcb_conn.c +++ b/src/xcb_conn.c @@ -62,7 +62,7 @@ static int set_fd_flags(const int fd) static int write_setup(XCBConnection *c, XCBAuthInfo *auth_info) { static const char pad[3]; - XCBSetupReq out; + XCBSetupRequest out; struct iovec parts[6]; int count = 0; int endian = 0x01020304; @@ -79,9 +79,9 @@ static int write_setup(XCBConnection *c, XCBAuthInfo *auth_info) out.protocol_minor_version = X_PROTOCOL_REVISION; out.authorization_protocol_name_len = 0; out.authorization_protocol_data_len = 0; - parts[count].iov_len = sizeof(XCBSetupReq); + parts[count].iov_len = sizeof(XCBSetupRequest); parts[count++].iov_base = &out; - parts[count].iov_len = XCB_PAD(sizeof(XCBSetupReq)); + parts[count].iov_len = XCB_PAD(sizeof(XCBSetupRequest)); parts[count++].iov_base = (char *) pad; if(auth_info) |