mpatch: re-wrap wide line with clang-format
Differential Revision: https://phab.mercurial-scm.org/D1027
--- a/mercurial/mpatch.c Wed Oct 04 10:51:39 2017 -0400
+++ b/mercurial/mpatch.c Wed Oct 04 10:55:51 2017 -0400
@@ -36,7 +36,8 @@
a = (struct mpatch_flist *)malloc(sizeof(struct mpatch_flist));
if (a) {
- a->base = (struct mpatch_frag *)malloc(sizeof(struct mpatch_frag) * size);
+ a->base = (struct mpatch_frag *)malloc(
+ sizeof(struct mpatch_frag) * size);
if (a->base) {
a->head = a->tail = a->base;
return a;