diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-01-22 08:52:57 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-01-22 08:52:57 +0000 |
commit | 1f8e32cda1bf7dbc6619cc471360a8cb4f1a540c (patch) | |
tree | 85789350ae6e92d517b29d561abe8638fbe07611 /ffmpeg.c | |
parent | 7f938dd32bed373560e06a6f884f5d73415ed788 (diff) | |
download | ffmpeg-1f8e32cda1bf7dbc6619cc471360a8cb4f1a540c.tar.gz |
cosmetics: Fix Benoit's ugly formatting.
Originally committed as revision 11593 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -419,10 +419,9 @@ static void write_frame(AVFormatContext *s, AVPacket *pkt, AVCodecContext *avctx av_free_packet(pkt); new_pkt.destruct= av_destruct_packet; } else if(a<0){ - fprintf(stderr, "%s failed for stream %d, codec %s" - , bsfc->filter->name - , pkt->stream_index - , avctx->codec ? avctx->codec->name : "copy"); + fprintf(stderr, "%s failed for stream %d, codec %s", + bsfc->filter->name, pkt->stream_index, + avctx->codec ? avctx->codec->name : "copy"); print_error("", a); } *pkt= new_pkt; |