Commit 9334c86f by Ariel O. Barria

print_usage functions is defined but not used

Use the previously created function to display a message when the arguments are not valid.

ticket 3095
parent be5fda75
......@@ -135,6 +135,8 @@ static void parse_options(describe_options *opts, int argc, char **argv)
} else if (match_int_arg((int *)&opts->format_options.abbreviated_size, &args, "--abbrev", 0)) {
} else if (match_int_arg((int *)&opts->describe_options.max_candidates_tags, &args, "--candidates", 0)) {
} else if (match_str_arg(&opts->describe_options.pattern, &args, "--match")) {
} else {
print_usage();
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment