Fixes a warning about assignment in an if()
This commit is contained in:
parent
aa5ea6ee52
commit
612b88b17b
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ opus_int silk_Encode(
|
|||
}
|
||||
/* Reset Encoder */
|
||||
for( n = 0; n < encControl->nChannelsInternal; n++ ) {
|
||||
if( ret = silk_init_encoder( &psEnc->state_Fxx[ n ] ) ) {
|
||||
if( (ret = silk_init_encoder( &psEnc->state_Fxx[ n ] ) ) != 0 ) {
|
||||
SKP_assert( 0 );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue