From e96070074db451b650d214f3e1e9df99ac11773a Mon Sep 17 00:00:00 2001 From: David Goldwich Date: Fri, 2 Dec 2011 05:54:19 +0100 Subject: oma: clearify ambiguous if condition Signed-off-by: David Goldwich Signed-off-by: Anton Khirnov --- libavformat/oma.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/oma.c') diff --git a/libavformat/oma.c b/libavformat/oma.c index 9e98202e4f..0d81a43dfd 100644 --- a/libavformat/oma.c +++ b/libavformat/oma.c @@ -202,8 +202,8 @@ static int decrypt_init(AVFormatContext *s, ID3v2ExtraMeta *em, uint8_t *header) while (em) { if (!strcmp(em->tag, "GEOB") && (geob = em->data) && - !strcmp(geob->description, "OMG_LSI") || - !strcmp(geob->description, "OMG_BKLSI")) { + (!strcmp(geob->description, "OMG_LSI") || + !strcmp(geob->description, "OMG_BKLSI"))) { break; } em = em->next; -- cgit v1.2.3