summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2012-09-20 14:22:48 -0400
committerAdam Jackson <ajax@redhat.com>2012-09-20 14:40:18 -0400
commit506e3437c73e5ae935ff7c056d7808fbb0c7e614 (patch)
treec6692744752c847dc9f11e2cbe5afa591230aac7
parent092c57ab173c8b71056f6feb3b9d04d063a46579 (diff)
dix: Fix types in WindowOptRecserver-1.14-abi-churn
No reason for these to be 64 bits on LP64. Reviewed-by: Daniel Stone <daniel@fooishbar.org> Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r--include/windowstr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/windowstr.h b/include/windowstr.h
index 9caafba41..a1e608f09 100644
--- a/include/windowstr.h
+++ b/include/windowstr.h
@@ -86,8 +86,8 @@ typedef struct _WindowOpt {
struct _OtherClients *otherClients; /* default: NULL */
struct _GrabRec *passiveGrabs; /* default: NULL */
PropertyPtr userProps; /* default: NULL */
- unsigned long backingBitPlanes; /* default: ~0L */
- unsigned long backingPixel; /* default: 0 */
+ CARD32 backingBitPlanes; /* default: ~0L */
+ CARD32 backingPixel; /* default: 0 */
RegionPtr boundingShape; /* default: NULL */
RegionPtr clipShape; /* default: NULL */
RegionPtr inputShape; /* default: NULL */