mpatch: re-wrap wide line with clang-format
authorAugie Fackler <augie@google.com>
Wed, 04 Oct 2017 10:55:51 -0400
changeset 34633 347c0f4232e1
parent 34632 7201e3607d90
child 34634 2e08b69bcd29
mpatch: re-wrap wide line with clang-format Differential Revision: https://phab.mercurial-scm.org/D1027
mercurial/mpatch.c
--- 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;