##// END OF EJS Templates
bdiff: convert more longs to int64_t...
Matt Harbison -
r36934:1b9f6440 default
parent child Browse files
Show More
@@ -257,7 +257,8 b' abort:'
257 return NULL;
257 return NULL;
258 }
258 }
259
259
260 static int hunk_consumer(long a1, long a2, long b1, long b2, void *priv)
260 static int hunk_consumer(int64_t a1, int64_t a2, int64_t b1, int64_t b2,
261 void *priv)
261 {
262 {
262 PyObject *rl = (PyObject *)priv;
263 PyObject *rl = (PyObject *)priv;
263 PyObject *m = Py_BuildValue("llll", a1, a2, b1, b2);
264 PyObject *m = Py_BuildValue("llll", a1, a2, b1, b2);
General Comments 0
You need to be logged in to leave comments. Login now