summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/oma.c4
1 files changed, 2 insertions, 2 deletions
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;