diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2006-10-16 22:18:24 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2006-10-16 22:18:24 +0000 |
commit | fd821f5c182e0c6f2da2f299b7d1341affd0914f (patch) | |
tree | 4d6765e0e45102c4a69bf114f2e6ebe38297ea8d /src/xine-engine/alphablend.h | |
parent | eebe97a3fe85f26ec95ad237a327ed02a2a2bfb2 (diff) | |
download | xine-lib-fd821f5c182e0c6f2da2f299b7d1341affd0914f.tar.gz xine-lib-fd821f5c182e0c6f2da2f299b7d1341affd0914f.tar.bz2 |
Fixed several warnings (but warnings due to APIs not solved).
CVS patchset: 8344
CVS date: 2006/10/16 22:18:24
Diffstat (limited to 'src/xine-engine/alphablend.h')
-rw-r--r-- | src/xine-engine/alphablend.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xine-engine/alphablend.h b/src/xine-engine/alphablend.h index 30806cd5e..513ac116f 100644 --- a/src/xine-engine/alphablend.h +++ b/src/xine-engine/alphablend.h @@ -59,10 +59,10 @@ void _x_alphablend_free(alphablend_t *extra_data) XINE_PROTECTED; #endif typedef struct { /* CLUT == Color LookUp Table */ - uint8_t cb : 8; - uint8_t cr : 8; - uint8_t y : 8; - uint8_t foo : 8; + uint8_t cb; + uint8_t cr; + uint8_t y; + uint8_t foo; } ATTRIBUTE_PACKED clut_t; |