diff options
| author | uncrustify <david@tethera.net> | 2019-06-13 07:55:35 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2019-06-14 07:41:27 -0300 |
| commit | 2b62ca2e3b786beca8d89fa737bda0b49faa638d (patch) | |
| tree | e2dcfc03bae8c54340396522f1640c89fa7e677f /lib/message-id.c | |
| parent | 8a3f86f2f9b53d34e001537b113628ceba20a02d (diff) | |
lib: run uncrustify
This is the result of running
$ uncrustify --replace --config ../devel/uncrustify.cfg *.c *.h *.cc
in the lib directory
Diffstat (limited to 'lib/message-id.c')
| -rw-r--r-- | lib/message-id.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/message-id.c b/lib/message-id.c index e71ce9f4..54012354 100644 --- a/lib/message-id.c +++ b/lib/message-id.c @@ -27,7 +27,7 @@ skip_space_and_comments (const char **str) } else if (*s == ')') { nesting--; } else if (*s == '\\') { - if (*(s+1)) + if (*(s + 1)) s++; } s++; @@ -90,7 +90,7 @@ _notmuch_message_id_parse (void *ctx, const char *message_id, const char **next) for (r = result, len = strlen (r); *r; r++, len--) if (*r == ' ' || *r == '\t') - memmove (r, r+1, len); + memmove (r, r + 1, len); } return result; |
