From 6438584285de72858f97be891e16a125d13471d8 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Wed, 27 Aug 2008 13:56:23 +0200 Subject: [PATCH] Fix htonl() arg & convert sizeof() to signed Signed-off-by: Julien Danjou --- src/xcb_conn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xcb_conn.c b/src/xcb_conn.c index e7856c3..02f60bd 100644 --- a/src/xcb_conn.c +++ b/src/xcb_conn.c @@ -80,7 +80,7 @@ static int write_setup(xcb_connection_t *c, xcb_auth_info_t *auth_info) xcb_setup_request_t out; struct iovec parts[6]; int count = 0; - int endian = 0x01020304; + static const uint32_t endian = 0x01020304; int ret; memset(&out, 0, sizeof(out)); @@ -110,7 +110,7 @@ static int write_setup(xcb_connection_t *c, xcb_auth_info_t *auth_info) parts[count].iov_len = XCB_PAD(out.authorization_protocol_data_len); parts[count++].iov_base = (char *) pad; } - assert(count <= sizeof(parts) / sizeof(*parts)); + assert(count <= (int) (sizeof(parts) / sizeof(*parts))); _xcb_lock_io(c); { -- 2.34.1