# HG changeset patch # User Augie Fackler # Date 2017-10-04 14:55:51 # Node ID 347c0f4232e195ef2b2bffd50d649b79ac18d0cf # Parent 7201e3607d90f0e698963a0b37cc1a767ee618ed mpatch: re-wrap wide line with clang-format Differential Revision: https://phab.mercurial-scm.org/D1027 diff --git a/mercurial/mpatch.c b/mercurial/mpatch.c --- a/mercurial/mpatch.c +++ b/mercurial/mpatch.c @@ -36,7 +36,8 @@ static struct mpatch_flist *lalloc(ssize 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;