From 22730e8790a42c2873fd424d7ba66af95e0ab573 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 26 Dec 2008 19:28:42 +0000 Subject: [PATCH] Put pass_logfilename_prefix check on a single line, improve readability. Originally committed as revision 16351 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 5e555f94b..b196f5846 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1837,8 +1837,8 @@ static int av_encode(AVFormatContext **output_files, char *logbuffer; snprintf(logfilename, sizeof(logfilename), "%s-%d.log", - pass_logfilename_prefix ? - pass_logfilename_prefix : DEFAULT_PASS_LOGFILENAME_PREFIX, i); + pass_logfilename_prefix ? pass_logfilename_prefix : DEFAULT_PASS_LOGFILENAME_PREFIX, + i); if (codec->flags & CODEC_FLAG_PASS1) { f = fopen(logfilename, "w"); if (!f) { -- 2.11.0