summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-20 15:16:07 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-20 15:16:07 +0000
commite29b451a5192ddd27f666a62d7181a1eb1a93e8a (patch)
treec664295255a382923f91e27b3b3bdf28a2d627cd
parent0055b2d11aea9040dc4fd0e9bb0bc10e5bc9fe63 (diff)
Cosmetics: merge two lines in ff_dprintf_ref().
Originally committed as revision 24848 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavfilter/avfilter.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index aabc0aaeef..f3a9c1ff48 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -195,8 +195,7 @@ void ff_dprintf_ref(void *ctx, AVFilterBufferRef *ref, int end)
{
dprintf(ctx,
"ref[%p buf:%p refcount:%d perms:0x%x data:%p linesize[%d, %d, %d, %d] pts:%"PRId64" pos:%"PRId64,
- ref, ref->buf, ref->buf->refcount, ref->perms,
- ref->data[0],
+ ref, ref->buf, ref->buf->refcount, ref->perms, ref->data[0],
ref->linesize[0], ref->linesize[1], ref->linesize[2], ref->linesize[3],
ref->pts, ref->pos);