# HG changeset patch # User Yuya Nishihara # Date 2016-08-07 00:49:07 # Node ID 21ac534d7d30e528aa224d383ca82cca50863cdd # Parent 84a8de5ac901c00f4efec1ec2e0be24ebd970fd8 mpatch: remove superfluous whitespaces diff --git a/mercurial/mpatch.c b/mercurial/mpatch.c --- a/mercurial/mpatch.c +++ b/mercurial/mpatch.c @@ -281,4 +281,3 @@ struct mpatch_flist *mpatch_fold(void *b return combine(mpatch_fold(bins, get_next_item, start, start + len), mpatch_fold(bins, get_next_item, start + len, end)); } - diff --git a/mercurial/mpatch_module.c b/mercurial/mpatch_module.c --- a/mercurial/mpatch_module.c +++ b/mercurial/mpatch_module.c @@ -48,7 +48,7 @@ struct mpatch_flist *cpygetitem(void *bi if ((r = mpatch_decode(buffer, blen, &res)) < 0) { if (!PyErr_Occurred()) PyErr_SetString(mpatch_Error, mpatch_errors[-r]); - return NULL; + return NULL; } return res; }