mercurial/mpatch.c
changeset 5458 cd1a6e7216c5
parent 5444 a0952e4e52eb
child 5460 fe9b0bb3eb1c
--- a/mercurial/mpatch.c
+++ b/mercurial/mpatch.c
@@ -311,8 +311,7 @@ static int apply(char *buf, const char *
 /* recursively generate a patch of all bins between start and end */
 static struct flist *fold(PyObject *bins, int start, int end)
 {
-	int len;
-	ssize_t blen;
+	int len, blen;
 	const char *buffer;
 
 	if (start + 1 == end) {
@@ -338,8 +337,7 @@ patches(PyObject *self, PyObject *args)
 	struct flist *patch;
 	const char *in;
 	char *out;
-	int len, outlen;
-	ssize_t inlen;
+	int len, inlen, outlen;
 
 	if (!PyArg_ParseTuple(args, "OO:mpatch", &text, &bins))
 		return NULL;