| 916 | } |
| 917 | |
| 918 | static char *plugin_opt_bool_check(const char *arg, struct plugin_opt *popt) |
| 919 | { |
| 920 | bool v; |
| 921 | char *ret = opt_set_bool_arg(arg, &v); |
| 922 | if (ret) |
| 923 | return ret; |
| 924 | |
| 925 | return plugin_opt_check(popt); |
| 926 | } |
| 927 | |
| 928 | static char *plugin_opt_flag_check(struct plugin_opt *popt) |
| 929 | { |
nothing calls this directly
no test coverage detected