summaryrefslogtreecommitdiff
path: root/src/xcbint.h
diff options
context:
space:
mode:
authorJamey Sharp <jamey@minilop.net>2010-10-09 17:13:45 -0700
committerJamey Sharp <jamey@minilop.net>2010-10-09 17:13:45 -0700
commited37b087519ecb9e74412e4df8f8a217ab6d12a9 (patch)
tree31ba2e9e5a2095e613d51ca80e6a9815bd37a68c /src/xcbint.h
parent6c8b539c2a2e53bf3deb0e749a941ab52b7e8834 (diff)
xcb_in: Use 64-bit sequence numbers internally everywhere.
Widen sequence numbers on entry to those public APIs that still take 32-bit sequence numbers. Signed-off-by: Jamey Sharp <jamey@minilop.net>
Diffstat (limited to 'src/xcbint.h')
-rw-r--r--src/xcbint.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/xcbint.h b/src/xcbint.h
index 0c5e55e..096576c 100644
--- a/src/xcbint.h
+++ b/src/xcbint.h
@@ -54,7 +54,6 @@ enum lazy_reply_tag
#define XCB_PAD(i) (-(i) & 3)
#define XCB_SEQUENCE_COMPARE(a,op,b) ((int64_t) ((a) - (b)) op 0)
-#define XCB_SEQUENCE_COMPARE_32(a,op,b) (((int) (a) - (int) (b)) op 0)
#ifndef offsetof
#define offsetof(type,member) ((size_t) &((type *)0)->member)