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-config.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-config.c')
| -rw-r--r-- | notmuch-config.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/notmuch-config.c b/notmuch-config.c index 0193401f..e1a583e6 100644 --- a/notmuch-config.c +++ b/notmuch-config.c @@ -510,7 +510,9 @@ notmuch_config_close (notmuch_config_t *config) talloc_free (config); } -const char *_notmuch_config_get_path (notmuch_config_t *config) { +const char * +_notmuch_config_get_path (notmuch_config_t *config) +{ return config->filename; } /* Save any changes made to the notmuch configuration. @@ -1105,7 +1107,8 @@ notmuch_config_command_list (notmuch_config_t *config) } int -notmuch_config_command (notmuch_config_t *config, unused(notmuch_database_t *notmuch), int argc, char *argv[]) +notmuch_config_command (notmuch_config_t *config, unused(notmuch_database_t *notmuch), + int argc, char *argv[]) { int ret; int opt_index; |
