| 907 | } |
| 908 | |
| 909 | static char *plugin_opt_long_check(const char *arg, struct plugin_opt *popt) |
| 910 | { |
| 911 | long v; |
| 912 | char *ret = opt_set_longval(arg, &v); |
| 913 | if (ret) |
| 914 | return ret; |
| 915 | return plugin_opt_check(popt); |
| 916 | } |
| 917 | |
| 918 | static char *plugin_opt_bool_check(const char *arg, struct plugin_opt *popt) |
| 919 | { |
nothing calls this directly
no test coverage detected