From 67703d64d70ba3f072b27bb94ad73d597b4f45d4 Mon Sep 17 00:00:00 2001 From: Michael Bradshaw Date: Thu, 14 Jun 2012 10:54:09 -0600 Subject: [PATCH] lavf: cosmetic: format else with indentation Signed-off-by: Michael Bradshaw Signed-off-by: Michael Niedermayer --- libavformat/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index 0567ec2cc2..c0574e521d 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2049,7 +2049,7 @@ static void update_stream_timings(AVFormatContext *ic) if (start_time1 < start_time_text) start_time_text = start_time1; } else - start_time = FFMIN(start_time, start_time1); + start_time = FFMIN(start_time, start_time1); if (st->duration != AV_NOPTS_VALUE) { end_time1 = start_time1 + av_rescale_q(st->duration, st->time_base, AV_TIME_BASE_Q);