src/file_ogg.c: fix warning about missing parenthesis
This commit is contained in:
parent
6fa30f46bb
commit
dc0f90ba71
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ static int header_check_ogg(const unsigned char *buffer, const unsigned int buff
|
||||||
{
|
{
|
||||||
/* http://en.wikipedia.org/wiki/Ogg#File_format */
|
/* http://en.wikipedia.org/wiki/Ogg#File_format */
|
||||||
/* Return if not Beginning Of Stream and already saving the file */
|
/* Return if not Beginning Of Stream and already saving the file */
|
||||||
if(buffer[5]&0x02!=0x02 &&
|
if((buffer[5]&0x02)!=0x02 &&
|
||||||
file_recovery!=NULL && file_recovery->file_stat!=NULL &&
|
file_recovery!=NULL && file_recovery->file_stat!=NULL &&
|
||||||
file_recovery->file_stat->file_hint==&file_hint_ogg &&
|
file_recovery->file_stat->file_hint==&file_hint_ogg &&
|
||||||
(file_recovery->blocksize < (27+255)/2 ||
|
(file_recovery->blocksize < (27+255)/2 ||
|
||||||
|
|
Loading…
Reference in a new issue