##// END OF EJS Templates
mpatch: reflow two oddly formatted else blocks with clang-format...
Augie Fackler -
r34635:2e08b69b default
parent child Browse files
Show More
@@ -78,8 +78,7 b' static int gather(struct mpatch_flist *d'
78 78 /* save this hunk */
79 79 offset += s->start + s->len - s->end;
80 80 *d++ = *s++;
81 }
82 else {
81 } else {
83 82 /* break up this hunk */
84 83 c = cut - offset;
85 84 if (s->end < c)
@@ -122,8 +121,7 b' static int discard(struct mpatch_flist *'
122 121 if (postend <= cut) {
123 122 offset += s->start + s->len - s->end;
124 123 s++;
125 }
126 else {
124 } else {
127 125 c = cut - offset;
128 126 if (s->end < c)
129 127 c = s->end;
General Comments 0
You need to be logged in to leave comments. Login now