Browse Source

oma: clearify ambiguous if condition

Signed-off-by: David Goldwich <david.goldwich@gmail.com>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
tags/n0.9
David Goldwich Anton Khirnov 14 years ago
parent
commit
e96070074d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/oma.c

+ 2
- 2
libavformat/oma.c View File

@@ -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;


Loading…
Cancel
Save