diff mov.c @ 5497:59df3b64dc89 libavformat

cosmetics, remove useless parentheses, add space
author bcoudurier
date Mon, 04 Jan 2010 22:59:43 +0000
parents 324c7c25e4ad
children 3a5082b94ab3
line wrap: on
line diff
--- a/mov.c	Mon Jan 04 22:58:19 2010 +0000
+++ b/mov.c	Mon Jan 04 22:59:43 2010 +0000
@@ -184,7 +184,7 @@
 
     if (atom.size < 0)
         atom.size = INT64_MAX;
-    while(((total_size + 8) < atom.size) && !url_feof(pb)) {
+    while (total_size + 8 < atom.size && !url_feof(pb)) {
         int (*parse)(MOVContext*, ByteIOContext*, MOVAtom) = NULL;
         a.size = atom.size;
         a.type=0;