changeset 34633:347c0f4232e1

mpatch: re-wrap wide line with clang-format Differential Revision: https://phab.mercurial-scm.org/D1027
author Augie Fackler <augie@google.com>
date Wed, 04 Oct 2017 10:55:51 -0400
parents 7201e3607d90
children 2e08b69bcd29
files mercurial/mpatch.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;