aboutsummaryrefslogtreecommitdiff
path: root/lib/message-id.c
diff options
context:
space:
mode:
authoruncrustify <david@tethera.net>2019-06-13 07:55:35 -0300
committerDavid Bremner <david@tethera.net>2019-06-14 07:41:27 -0300
commit2b62ca2e3b786beca8d89fa737bda0b49faa638d (patch)
treee2dcfc03bae8c54340396522f1640c89fa7e677f /lib/message-id.c
parent8a3f86f2f9b53d34e001537b113628ceba20a02d (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.c4
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;