diff options
author | Mike Melanson <mike@multimedia.cx> | 2002-12-23 21:15:06 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2002-12-23 21:15:06 +0000 |
commit | 63aef7522fdd005ff7f4ac6f79efa2797e488118 (patch) | |
tree | fd03577d362d8b4b2c3bb270f481fcf5d074c0e4 | |
parent | 2e4d617680e9668cdde4fca955bc48efd12e4109 (diff) | |
download | xine-lib-63aef7522fdd005ff7f4ac6f79efa2797e488118.tar.gz xine-lib-63aef7522fdd005ff7f4ac6f79efa2797e488118.tar.bz2 |
heh...those should really be unsigned char's
CVS patchset: 3656
CVS date: 2002/12/23 21:15:06
-rw-r--r-- | src/libxinevdec/fli.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libxinevdec/fli.c b/src/libxinevdec/fli.c index a8f23b319..0f895cbf5 100644 --- a/src/libxinevdec/fli.c +++ b/src/libxinevdec/fli.c @@ -23,7 +23,7 @@ * avoid when implementing a FLI decoder, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: fli.c,v 1.15 2002/12/23 15:36:37 tmmm Exp $ + * $Id: fli.c,v 1.16 2002/12/23 21:15:06 tmmm Exp $ */ #include <stdio.h> @@ -104,7 +104,7 @@ void decode_fli_frame(fli_decoder_t *this) { int color_packets; int color_changes; int color_shift; - unsigned r, g, b; + unsigned char r, g, b; int lines, x; int compressed_lines; |