diff options
| author | uncrustify <david@tethera.net> | 2021-03-13 08:45:34 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-03-13 08:45:34 -0400 |
| commit | eef21c284742fa5ae14d7d352acc3a4dc98821ce (patch) | |
| tree | a4a6383a4e38d20c8072b8a2eaa499726b81e9a3 /notmuch-search.c | |
| parent | df4c66f85d4aa05c462ad119c6dad3afa421f6f2 (diff) | |
cli: run uncrustify
This is the result of running
$ uncrustify --replace --config devel/uncrustify.cfg *.c *.h
in the top level source directory
Line breaks were then adjusted manually to keep argc and argv
together.
Diffstat (limited to 'notmuch-search.c')
| -rw-r--r-- | notmuch-search.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/notmuch-search.c b/notmuch-search.c index aba22799..a5c49477 100644 --- a/notmuch-search.c +++ b/notmuch-search.c @@ -794,7 +794,8 @@ 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 (unused(notmuch_config_t *config), notmuch_database_t *notmuch, + int argc, char *argv[]) { search_context_t *ctx = &search_context; int opt_index, ret; @@ -831,7 +832,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 +862,8 @@ 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 (unused(notmuch_config_t *config), notmuch_database_t *notmuch, + int argc, char *argv[]) { search_context_t *ctx = &search_context; int opt_index, ret; |
