changeset 5201:12bd8561aed1 libavformat

Fix indention after previous commit.
author michael
date Wed, 16 Sep 2009 01:17:39 +0000
parents cd884511ec8b
children 62e44137dab5
files utils.c
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/utils.c	Wed Sep 16 00:59:15 2009 +0000
+++ b/utils.c	Wed Sep 16 01:17:39 2009 +0000
@@ -2658,12 +2658,12 @@
     av_dup_packet(&this_pktl->pkt);  // duplicate the packet if it uses non-alloced memory
 
     if(!s->packet_buffer_end || compare(s, &s->packet_buffer_end->pkt, pkt)){
-    next_point = &s->packet_buffer;
-    while(*next_point){
-        if(compare(s, &(*next_point)->pkt, pkt))
-            break;
-        next_point= &(*next_point)->next;
-    }
+        next_point = &s->packet_buffer;
+        while(*next_point){
+            if(compare(s, &(*next_point)->pkt, pkt))
+                break;
+            next_point= &(*next_point)->next;
+        }
     }else{
         next_point = &(s->packet_buffer_end->next);
         assert(!*next_point);