summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-06 13:24:27 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-06 13:24:27 -0400
commit20d1b2259937dc8cd6e3729a9795809c176ef2a6 (patch)
tree71cc7319f5e590bed00fd6091f3a0cbe62317231 /config.h
parentb5eebeef24c64020d84211f26e51cce70e402576 (diff)
Added a NULL entry to the end of `config_opts`.
Diffstat (limited to 'config.h')
-rw-r--r--config.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/config.h b/config.h
index 5dbc531..244077b 100644
--- a/config.h
+++ b/config.h
@@ -37,6 +37,7 @@ static const config_opt config_opts[] = {
{"merge-type", "Type of merge (options: 0 = Merge individually, 1 = Merge into one).", TYPE_INT, &get_merge_type},
{"pr-root", "Directory to store pull requests in.", TYPE_STRING, &pr_root},
{"key-file", "Path to file containing gpg/pgp public keys of each maintainer.", TYPE_STRING, &get_key_path},
+ {NULL, NULL, TYPE_NONE, NULL},
};
extern config *parse_config(const char *filename);