From 7857d3ccf6f170fec47ff288010d2f5522294da6 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sun, 18 Oct 2009 20:25:48 +0000 Subject: [PATCH] fix indentation and add braces Originally committed as revision 20289 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/utils.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index e38a01c17..9beec720b 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2949,9 +2949,10 @@ void dump_format(AVFormatContext *ic, for(k=0; kprograms[j]->nb_stream_indexes; k++) dump_stream_format(ic, ic->programs[j]->stream_index[k], index, is_output); } - } else - for(i=0;inb_streams;i++) - dump_stream_format(ic, i, index, is_output); + } else { + for(i=0;inb_streams;i++) + dump_stream_format(ic, i, index, is_output); + } if (ic->metadata) { AVMetadataTag *tag=NULL; av_log(NULL, AV_LOG_INFO, " Metadata\n"); -- 2.11.0