summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-11-16 19:37:11 +0100
committerClément Bœsch <ubitux@gmail.com>2011-11-16 19:37:11 +0100
commit69a501e6a1a5cbd6fd47ad09a6e0f9edad5d5b7b (patch)
tree2001631b1f6e628bed080a74eb51b7e3e4cccf41 /ffprobe.c
parent9813af259afd1ce04818a478d3dde839237ef721 (diff)
ffprobe: small align cosmetic in json writer struct init.
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/ffprobe.c b/ffprobe.c
index d1b26becd2..8864594196 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,