comparison mercurial/mpatch.c @ 29740:21ac534d7d30

mpatch: remove superfluous whitespaces
author Yuya Nishihara <yuya@tcha.org>
date Sun, 07 Aug 2016 09:49:07 +0900
parents 55dd12204b8e
children 9a1685c70db4
comparison
equal deleted inserted replaced
29739:84a8de5ac901 29740:21ac534d7d30
279 /* divide and conquer, memory management is elsewhere */ 279 /* divide and conquer, memory management is elsewhere */
280 len = (end - start) / 2; 280 len = (end - start) / 2;
281 return combine(mpatch_fold(bins, get_next_item, start, start + len), 281 return combine(mpatch_fold(bins, get_next_item, start, start + len),
282 mpatch_fold(bins, get_next_item, start + len, end)); 282 mpatch_fold(bins, get_next_item, start + len, end));
283 } 283 }
284