This revision was automatically updated to reflect the committed changes. Closed by commit rHG347c0f4232e1: mpatch: re-wrap wide line with clang-format (authored by durin42, committed by ).
REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D1027?vs=2627&id=2671 REVISION DETAIL https://phab.mercurial-scm.org/D1027 AFFECTED FILES mercurial/mpatch.c CHANGE DETAILS diff --git a/mercurial/mpatch.c b/mercurial/mpatch.c --- a/mercurial/mpatch.c +++ b/mercurial/mpatch.c @@ -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; To: durin42, #hg-reviewers, pulkit Cc: mercurial-devel _______________________________________________ Mercurial-devel mailing list [email protected] https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel
