X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-reindex.c;h=57ff59040153f934db5ee215fbee898924ffd78d;hp=44223042f46c1dc8536726f3c64d8448a2694f30;hb=bfd669bb2ef01d3142dd8294c7e1326ee7503e39;hpb=178d62cf9c9959fe603c9ffef9fa90f65b67dcd5 diff --git a/notmuch-reindex.c b/notmuch-reindex.c index 44223042..57ff5904 100644 --- a/notmuch-reindex.c +++ b/notmuch-reindex.c @@ -40,7 +40,7 @@ handle_sigint (unused (int sig)) */ static int reindex_query (notmuch_database_t *notmuch, const char *query_string, - notmuch_param_t *indexopts) + notmuch_indexopts_t *indexopts) { notmuch_query_t *query; notmuch_messages_t *messages; @@ -89,7 +89,7 @@ notmuch_reindex_command (notmuch_config_t *config, int argc, char *argv[]) struct sigaction action; int opt_index; int ret; - notmuch_param_t *indexopts = NULL; + notmuch_indexopts_t *indexopts = NULL; /* Set up our handler for SIGINT */ memset (&action, 0, sizeof (struct sigaction)); @@ -99,8 +99,8 @@ notmuch_reindex_command (notmuch_config_t *config, int argc, char *argv[]) sigaction (SIGINT, &action, NULL); notmuch_opt_desc_t options[] = { - { NOTMUCH_OPT_INHERIT, (void *) ¬much_shared_options, NULL, 0, 0 }, - { 0, 0, 0, 0, 0 } + { .opt_inherit = notmuch_shared_options }, + { } }; opt_index = parse_arguments (argc, argv, options, 1);