1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

ffprobe: small align cosmetic in json writer struct init.

This commit is contained in:
Clément Bœsch 2011-11-16 19:37:11 +01:00
parent 9813af259a
commit 69a501e6a1

View File

@ -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,