From patchwork Sun Aug 7 12:09:55 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1,of,4] mpatch: remove superfluous whitespaces From: Yuya Nishihara X-Patchwork-Id: 16170 Message-Id: <8cf0accb1390495a49fc.1470571795@mimosa> To: mercurial-devel@mercurial-scm.org Date: Sun, 07 Aug 2016 21:09:55 +0900 # HG changeset patch # User Yuya Nishihara # Date 1470530947 -32400 # Sun Aug 07 09:49:07 2016 +0900 # Node ID 8cf0accb1390495a49fcfbb967b59406e1f54019 # Parent a2d352c78f11ac8307c41f684000ace10efee2c1 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; }