From patchwork Thu Oct 12 15:09:54 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D1027: mpatch: re-wrap wide line with clang-format From: phabricator X-Patchwork-Id: 24783 Message-Id: To: mercurial-devel@mercurial-scm.org Date: Thu, 12 Oct 2017 15:09:54 +0000 durin42 created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REPOSITORY rHG Mercurial REVISION DETAIL https://phab.mercurial-scm.org/D1027 AFFECTED FILES mercurial/mpatch.c CHANGE DETAILS To: durin42, #hg-reviewers Cc: mercurial-devel 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;