| 5795 | } |
| 5796 | |
| 5797 | static int diff_opt_no_prefix(const struct option *opt, |
| 5798 | const char *optarg, int unset) |
| 5799 | { |
| 5800 | struct diff_options *options = opt->value; |
| 5801 | |
| 5802 | BUG_ON_OPT_NEG(unset); |
| 5803 | BUG_ON_OPT_ARG(optarg); |
| 5804 | diff_set_noprefix(options); |
| 5805 | return 0; |
| 5806 | } |
| 5807 | |
| 5808 | static int diff_opt_default_prefix(const struct option *opt, |
| 5809 | const char *optarg, int unset) |
nothing calls this directly
no test coverage detected