forked from len0rd/rockbox
m4a: Fix a warning under GCC 8.
...Not sure why this just cropped up now. Change-Id: I2318ee929fb5fddbf033680d92f21bba73631db6
This commit is contained in:
parent
2ef10ec734
commit
6f4d0b7eb1
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ unsigned int m4a_seek(demux_res_t* demux_res, stream_t* stream,
|
|||
uint32_t* current_sample, uint32_t* lookup_table_idx)
|
||||
{
|
||||
uint32_t i, sample_i;
|
||||
uint32_t time, time_cnt, time_dur;
|
||||
uint32_t time, time_cnt = 0, time_dur = 0;
|
||||
uint32_t chunk, chunk_first_sample;
|
||||
uint32_t offset;
|
||||
uint64_t sound_sample_i;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue