diff options
author | Adam Jackson <ajax@redhat.com> | 2011-06-17 14:30:06 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2012-01-06 13:29:53 -0500 |
commit | a4553019a10b4e01cc06f3081db71a83338697b4 (patch) | |
tree | 9370b9305c75d48fb7bf0806f5a191d11313a8f9 | |
parent | c44ef2e1ff7bad168c348da63477b4636b3054fd (diff) |
dix: Fix types in WindowOptRec
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.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/windowstr.h b/include/windowstr.h index 222de31dc..1124dfc4c 100644 --- a/include/windowstr.h +++ b/include/windowstr.h @@ -87,8 +87,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 */ |