Skip to content
Snippets Groups Projects
Commit 46edd3a0 authored by Stefano Sabatini's avatar Stefano Sabatini
Browse files

ffprobe: fix opt_pretty() signature

This is required after the OPT_FUNC2 removal.
parent 7464a53a
No related branches found
No related tags found
No related merge requests found
...@@ -364,12 +364,13 @@ static int opt_help(const char *opt, const char *arg) ...@@ -364,12 +364,13 @@ static int opt_help(const char *opt, const char *arg)
return 0; return 0;
} }
static void opt_pretty(void) static int opt_pretty(const char *opt, const char *arg)
{ {
show_value_unit = 1; show_value_unit = 1;
use_value_prefix = 1; use_value_prefix = 1;
use_byte_value_binary_prefix = 1; use_byte_value_binary_prefix = 1;
use_value_sexagesimal_format = 1; use_value_sexagesimal_format = 1;
return 0;
} }
static const OptionDef options[] = { static const OptionDef options[] = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment