summaryrefslogtreecommitdiff
path: root/libavformat/oma.c
diff options
context:
space:
mode:
authorDavid Goldwich <david.goldwich@gmail.com>2011-12-02 05:54:19 +0100
committerAnton Khirnov <anton@khirnov.net>2011-12-04 15:19:51 +0100
commite96070074db451b650d214f3e1e9df99ac11773a (patch)
tree2be72702dc8a76df753390da8d69a871db08dbde /libavformat/oma.c
parenta548b6cbfcf6d872bed473c1981931db36eda690 (diff)
oma: clearify ambiguous if condition
Signed-off-by: David Goldwich <david.goldwich@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavformat/oma.c')
-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;