From f0db05008ddbb50b120a0a21a585fd5770ecfa45 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Wed, 16 Nov 2011 18:39:27 +0100 Subject: [PATCH] ffprobe: apply misc cosmetics to compact writer definition --- ffprobe.c | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/ffprobe.c b/ffprobe.c index 8c44528af1..e203c32ade 100644 --- a/ffprobe.c +++ b/ffprobe.c @@ -675,17 +675,16 @@ static void compact_show_tags(WriterContext *wctx, AVDictionary *dict) } static Writer compact_writer = { - .name = "compact", - .priv_size = sizeof(CompactContext), - - .init = compact_init, - .uninit = compact_uninit, - .print_section_header = compact_print_section_header, - .print_section_footer = compact_print_section_footer, - .print_integer = compact_print_int, - .print_string = compact_print_str, - .show_tags = compact_show_tags, - .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS + .name = "compact", + .priv_size = sizeof(CompactContext), + .init = compact_init, + .uninit = compact_uninit, + .print_section_header = compact_print_section_header, + .print_section_footer = compact_print_section_footer, + .print_integer = compact_print_int, + .print_string = compact_print_str, + .show_tags = compact_show_tags, + .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS, }; /* CSV output */