X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-search.c;h=244817a987e1adc2a85fcf5bc6b19be34877c338;hp=aba22799cb285af087553f9ebffa9dbf0c619486;hb=8675be1d307bc2df882107744641f6a7858e65ad;hpb=d613d10ddd5948b4fa5a186fc54752047b25023d diff --git a/notmuch-search.c b/notmuch-search.c index aba22799..244817a9 100644 --- a/notmuch-search.c +++ b/notmuch-search.c @@ -794,7 +794,7 @@ static const notmuch_opt_desc_t common_options[] = { }; int -notmuch_search_command (unused(notmuch_config_t *config), notmuch_database_t *notmuch, int argc, char *argv[]) +notmuch_search_command (notmuch_database_t *notmuch, int argc, char *argv[]) { search_context_t *ctx = &search_context; int opt_index, ret; @@ -831,7 +831,8 @@ notmuch_search_command (unused(notmuch_config_t *config), notmuch_database_t *no if (ctx->output != OUTPUT_FILES && ctx->output != OUTPUT_MESSAGES && ctx->dupe != -1) { - fprintf (stderr, "Error: --duplicate=N is only supported with --output=files and --output=messages.\n"); + fprintf (stderr, + "Error: --duplicate=N is only supported with --output=files and --output=messages.\n"); return EXIT_FAILURE; } @@ -860,7 +861,7 @@ notmuch_search_command (unused(notmuch_config_t *config), notmuch_database_t *no } int -notmuch_address_command (unused(notmuch_config_t *config), notmuch_database_t *notmuch, int argc, char *argv[]) +notmuch_address_command (notmuch_database_t *notmuch, int argc, char *argv[]) { search_context_t *ctx = &search_context; int opt_index, ret;