diff options
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/options-table.c b/options-table.c index 054b2700..ab61ef79 100644 --- a/options-table.c +++ b/options-table.c @@ -891,6 +891,8 @@ options_table_populate_tree(enum options_table_scope scope, struct options *oo) const struct options_table_entry *oe; for (oe = options_table; oe->name != NULL; oe++) { + if (oe->scope == OPTIONS_TABLE_NONE) + fatalx("no scope for %s", oe->name); if (oe->scope != scope) continue; switch (oe->type) { |