diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-15 13:50:37 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-15 13:50:37 +0200 |
commit | 7e63f8f8e9c163af8d0f8428d2609fd49619f2cc (patch) | |
tree | 95fe37dea7070989b2d494c32983ad8c9e242d75 /src | |
parent | b157035591c1143f1a503ec0a3428fb717ec80da (diff) | |
download | xine-lib-7e63f8f8e9c163af8d0f8428d2609fd49619f2cc.tar.gz xine-lib-7e63f8f8e9c163af8d0f8428d2609fd49619f2cc.tar.bz2 |
Fix signs.
Diffstat (limited to 'src')
-rw-r--r-- | src/demuxers/demux_idcin.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/demuxers/demux_idcin.c b/src/demuxers/demux_idcin.c index 461771425..9df583ac7 100644 --- a/src/demuxers/demux_idcin.c +++ b/src/demuxers/demux_idcin.c @@ -130,7 +130,7 @@ static int demux_idcin_send_chunk(demux_plugin_t *this_gen) { unsigned char disk_palette[PALETTE_SIZE * 3]; palette_entry_t palette[PALETTE_SIZE]; int i; - unsigned int remaining_sample_bytes; + int remaining_sample_bytes; int scale_bits; /* figure out what the next data is */ @@ -359,7 +359,8 @@ static void demux_idcin_send_headers(demux_plugin_t *this_gen) { demux_idcin_t *this = (demux_idcin_t *) this_gen; buf_element_t *buf; xine_bmiheader *bih = (xine_bmiheader *)this->bih; - uint32_t i, size; + uint32_t i; + int size; this->video_fifo = this->stream->video_fifo; this->audio_fifo = this->stream->audio_fifo; |