##// END OF EJS Templates
bdiff: fix yet more fallout from xdiff long/int64 conversion (issue5885)...
Julien Cristau -
r38016:273ea09f stable
parent child Browse files
Show More
@@ -261,7 +261,7 b' static int hunk_consumer(int64_t a1, int'
261 261 void *priv)
262 262 {
263 263 PyObject *rl = (PyObject *)priv;
264 PyObject *m = Py_BuildValue("llll", a1, a2, b1, b2);
264 PyObject *m = Py_BuildValue("LLLL", a1, a2, b1, b2);
265 265 if (!m)
266 266 return -1;
267 267 if (PyList_Append(rl, m) != 0) {
General Comments 0
You need to be logged in to leave comments. Login now