diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-09-16 14:31:42 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-09-16 14:31:42 +0200 |
commit | 8af64e1a67725d29410219aaa8a5e8f2aaea7acf (patch) | |
tree | 2245f6eb64e9c96aa9b686d97cf0b3f98010ae1a /ffprobe.c | |
parent | 9eb1c947138b1727e5baa95303dec90915857f3b (diff) | |
download | ffmpeg-8af64e1a67725d29410219aaa8a5e8f2aaea7acf.tar.gz |
ffprobe: fix crash with -h.
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -663,7 +663,7 @@ static const OptionDef options[] = { "use sexagesimal format HOURS:MM:SS.MICROSECONDS for time units" }, { "pretty", 0, {(void*)&opt_pretty}, "prettify the format of displayed values, make it more human readable" }, - { "print_format", OPT_STRING | HAS_ARG, {(void*)&print_format}, "set the output printing format (available formats are: default, json)" }, + { "print_format", OPT_STRING | HAS_ARG, {(void*)&print_format}, "set the output printing format (available formats are: default, json)", "format" }, { "show_format", OPT_BOOL, {(void*)&do_show_format} , "show format/container info" }, { "show_packets", OPT_BOOL, {(void*)&do_show_packets}, "show packets info" }, { "show_streams", OPT_BOOL, {(void*)&do_show_streams}, "show streams info" }, |