diff -r 88e83a618de0 -r 7ed0750c71a1 mercurial/cext/parsers.c --- a/mercurial/cext/parsers.c Mon Oct 02 19:09:52 2017 +0100 +++ b/mercurial/cext/parsers.c Mon Oct 02 19:28:41 2017 +0100 @@ -321,7 +321,8 @@ /* * Build a set of non-normal and other parent entries from the dirstate dmap */ -static PyObject *nonnormalotherparententries(PyObject *self, PyObject *args) { +static PyObject *nonnormalotherparententries(PyObject *self, PyObject *args) +{ PyObject *dmap, *fname, *v; PyObject *nonnset = NULL, *otherpset = NULL, *result = NULL; Py_ssize_t pos; @@ -645,7 +646,8 @@ } -static PyObject *fm1readmarkers(PyObject *self, PyObject *args) { +static PyObject *fm1readmarkers(PyObject *self, PyObject *args) +{ const char *data, *dataend; int datalen; Py_ssize_t offset, stop;