Assert that long options are correctly set
This commit is contained in:
parent
2fc80eae2d
commit
4cfc1cd70a
1 changed files with 4 additions and 0 deletions
|
@ -569,6 +569,10 @@ sc_getopt_adapter_create_longopts(void) {
|
|||
size_t out_idx = 0;
|
||||
for (size_t i = 0; i < ARRAY_LEN(options); ++i) {
|
||||
const struct sc_option *in = &options[i];
|
||||
|
||||
// If longopt_id is set, then longopt must be set
|
||||
assert(!in->longopt_id || in->longopt);
|
||||
|
||||
if (!in->longopt) {
|
||||
// The longopts array must only contain long options
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue