Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Goldwich <david.goldwich@gmail.com>2011-12-02 08:54:19 +0400
committerAnton Khirnov <anton@khirnov.net>2011-12-04 18:19:51 +0400
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;