diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-11-16 19:37:11 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-16 19:37:11 +0100 |
commit | 69a501e6a1a5cbd6fd47ad09a6e0f9edad5d5b7b (patch) | |
tree | 2001631b1f6e628bed080a74eb51b7e3e4cccf41 /ffprobe.c | |
parent | 9813af259afd1ce04818a478d3dde839237ef721 (diff) | |
download | ffmpeg-69a501e6a1a5cbd6fd47ad09a6e0f9edad5d5b7b.tar.gz |
ffprobe: small align cosmetic in json writer struct init.
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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, |