From dc0f90ba71d8e06338dcc88734c502b479d1487a Mon Sep 17 00:00:00 2001 From: Christophe Grenier Date: Sat, 23 Mar 2013 19:22:00 +0100 Subject: [PATCH] src/file_ogg.c: fix warning about missing parenthesis --- src/file_ogg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file_ogg.c b/src/file_ogg.c index 5dc7390c..8c280427 100644 --- a/src/file_ogg.c +++ b/src/file_ogg.c @@ -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 */ /* 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->file_stat->file_hint==&file_hint_ogg && (file_recovery->blocksize < (27+255)/2 ||