diff options
Diffstat (limited to 'src/demuxers/demux_tta.c')
-rw-r--r-- | src/demuxers/demux_tta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demuxers/demux_tta.c b/src/demuxers/demux_tta.c index 1cd9d55de..1a2f5ca27 100644 --- a/src/demuxers/demux_tta.c +++ b/src/demuxers/demux_tta.c @@ -99,7 +99,7 @@ static int open_tta_file(demux_tta_t *this) { } this->seektable = xine_xcalloc(this->totalframes, sizeof(uint32_t)); - this->input->read(this->input, this->seektable, sizeof(uint32_t)*this->totalframes); + this->input->read(this->input, (uint8_t*)this->seektable, sizeof(uint32_t)*this->totalframes); /* Skip the CRC32 */ this->input->seek(this->input, 4, SEEK_CUR); |