summaryrefslogtreecommitdiff
path: root/wsutils.h
diff options
context:
space:
mode:
authorPär Lidberg <par.lidberg@elekta.com>2011-10-03 00:24:06 -0700
committerJeremy Huddleston <jeremyhu@apple.com>2011-10-03 00:24:06 -0700
commit7d88d8ab44b17247753f7225a1d8133d55d8423e (patch)
tree1733d63c875f18067706087b176e64f937aed83f /wsutils.h
parent95315108d25d0a17aef488e2bd4df8e98415d5d7 (diff)
Fix LP64 bug
https://bugs.freedesktop.org/show_bug.cgi?id=14321 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'wsutils.h')
-rw-r--r--wsutils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/wsutils.h b/wsutils.h
index 26b4469..67aba90 100644
--- a/wsutils.h
+++ b/wsutils.h
@@ -49,7 +49,7 @@ typedef struct
VisualID visualID; /* The VisualID of the overlay visual */
int transparentType; /* Can be None, TransparentPixel or
* TransparentMask */
- int value; /* Pixel value */
+ Pixel value; /* Pixel value */
int layer; /* Overlay planes will always be in
* layer 1 */
} OverlayVisualPropertyRec;
@@ -65,7 +65,7 @@ typedef struct
XVisualInfo *pOverlayVisualInfo; /* Pointer to the XVisualInfo struct */
int transparentType; /* Can be None, TransparentPixel or
* TransparentMask */
- int value; /* Pixel value */
+ Pixel value; /* Pixel value */
int layer; /* Overlay planes will always be in
* layer 1 */
} OverlayInfo;