mpatch: remove superfluous whitespaces
authorYuya Nishihara <yuya@tcha.org>
Sun, 07 Aug 2016 09:49:07 +0900
changeset 29752 21ac534d7d30
parent 29751 84a8de5ac901
child 29753 9a1685c70db4
mpatch: remove superfluous whitespaces
mercurial/mpatch.c
mercurial/mpatch_module.c
--- a/mercurial/mpatch.c	Sun Aug 07 14:06:20 2016 +0000
+++ b/mercurial/mpatch.c	Sun Aug 07 09:49:07 2016 +0900
@@ -281,4 +281,3 @@
 	return combine(mpatch_fold(bins, get_next_item, start, start + len),
 		       mpatch_fold(bins, get_next_item, start + len, end));
 }
-
--- a/mercurial/mpatch_module.c	Sun Aug 07 14:06:20 2016 +0000
+++ b/mercurial/mpatch_module.c	Sun Aug 07 09:49:07 2016 +0900
@@ -48,7 +48,7 @@
 	if ((r = mpatch_decode(buffer, blen, &res)) < 0) {
 		if (!PyErr_Occurred())
 			PyErr_SetString(mpatch_Error, mpatch_errors[-r]);
- 		return NULL;
+		return NULL;
 	}
 	return res;
 }