diff options
| author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2017-07-14 15:05:06 +0200 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-08-16 21:56:58 -0300 |
| commit | 23eed88e32551d9e0cb9a86eae0a562a049a58af (patch) | |
| tree | 8f42918510187d35115039ca8d582681b8e07b0b /notmuch-reply.c | |
| parent | f385055528a77d7cc4566de3a3605f2a6c474862 (diff) | |
remove boolean "first" argument from format_part_sprinter
This argument seems to be unused, and format_part_sprinter isn't
required to meet any specific API so it seems cleaner and simpler to
drop it.
Diffstat (limited to 'notmuch-reply.c')
| -rw-r--r-- | notmuch-reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-reply.c b/notmuch-reply.c index 40201b80..929f3077 100644 --- a/notmuch-reply.c +++ b/notmuch-reply.c @@ -667,7 +667,7 @@ static int do_reply(notmuch_config_t *config, /* Start the original */ sp->map_key (sp, "original"); - format_part_sprinter (config, sp, node, TRUE, TRUE, FALSE); + format_part_sprinter (config, sp, node, TRUE, FALSE); /* End */ sp->end (sp); |
