##// END OF EJS Templates
diffhelpers: use Py_ssize_t in testhunk()...
Adrian Buehlmann -
r16695:0a0933d3 default
parent child Browse files
Show More
@@ -134,8 +134,8 b' testhunk(PyObject *self, PyObject *args)'
134
134
135 PyObject *a, *b;
135 PyObject *a, *b;
136 long bstart;
136 long bstart;
137 int alen, blen;
137 Py_ssize_t alen, blen;
138 int i;
138 Py_ssize_t i;
139 char *sa, *sb;
139 char *sa, *sb;
140
140
141 if (!PyArg_ParseTuple(args, "OOl", &a, &b, &bstart))
141 if (!PyArg_ParseTuple(args, "OOl", &a, &b, &bstart))
General Comments 0
You need to be logged in to leave comments. Login now