From 20d1b2259937dc8cd6e3729a9795809c176ef2a6 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Sun, 6 Jun 2021 13:24:27 -0400 Subject: Added a NULL entry to the end of `config_opts`. --- config.h | 1 + 1 file changed, 1 insertion(+) 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); -- cgit v1.2.3-13-gbd6f