[FFmpeg-cvslog] ffprobe: small align cosmetic in json writer struct init.

Clément Bœsch git at videolan.org
Wed Nov 16 19:36:56 CET 2011


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Wed Nov 16 19:37:11 2011 +0100| [69a501e6a1a5cbd6fd47ad09a6e0f9edad5d5b7b] | committer: Clément Bœsch

ffprobe: small align cosmetic in json writer struct init.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=69a501e6a1a5cbd6fd47ad09a6e0f9edad5d5b7b
---

 ffprobe.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/ffprobe.c b/ffprobe.c
index d1b26be..8864594 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -850,9 +850,8 @@ static void json_show_tags(WriterContext *wctx, AVDictionary *dict)
 }
 
 static const Writer json_writer = {
-    .name         = "json",
-    .priv_size    = sizeof(JSONContext),
-
+    .name                 = "json",
+    .priv_size            = sizeof(JSONContext),
     .init                 = json_init,
     .uninit               = json_uninit,
     .print_header         = json_print_header,



More information about the ffmpeg-cvslog mailing list