##// END OF EJS Templates
parsers: remove warning: format ‘%ld’ expects argument of type ‘long int’...
André Sintzoff -
r19062:365b0de1 default
parent child Browse files
Show More
@@ -1285,7 +1285,7 b' static PyObject *find_deepest(indexObjec'
1285 if (revcount > capacity) {
1285 if (revcount > capacity) {
1286 PyErr_Format(PyExc_OverflowError,
1286 PyErr_Format(PyExc_OverflowError,
1287 "bitset size (%ld) > capacity (%ld)",
1287 "bitset size (%ld) > capacity (%ld)",
1288 revcount, capacity);
1288 (long)revcount, (long)capacity);
1289 return NULL;
1289 return NULL;
1290 }
1290 }
1291
1291
General Comments 0
You need to be logged in to leave comments. Login now