forked from len0rd/rockbox
fix warning in vorbis
Change-Id: I01dd320ac7f4641caaef62363556ca7527dbee19
This commit is contained in:
parent
91d3c8e459
commit
3b7263be2d
1 changed files with 4 additions and 1 deletions
|
@ -122,7 +122,10 @@ enum codec_status codec_run(void)
|
||||||
OggVorbis_File vf;
|
OggVorbis_File vf;
|
||||||
ogg_int32_t **pcm;
|
ogg_int32_t **pcm;
|
||||||
|
|
||||||
int error = CODEC_ERROR;
|
/* mark variable volatile because it can be modified between setjmp() and
|
||||||
|
* longjmp() so the compiler needs to know it should not put it in a register,
|
||||||
|
* see "man longjmp" for details. */
|
||||||
|
volatile int error = CODEC_ERROR;
|
||||||
long n;
|
long n;
|
||||||
int current_section;
|
int current_section;
|
||||||
int previous_section;
|
int previous_section;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue