##// END OF EJS Templates
cext: fix Windows warning about implicit conversion of 32-bit shift to 64 bit...
Matt Harbison -
r39108:beab6690 default
parent child Browse files
Show More
@@ -1535,7 +1535,7 b' static PyObject *find_deepest(indexObjec'
1535 1535 goto bail;
1536 1536 }
1537 1537
1538 interesting = calloc(sizeof(*interesting), 1 << revcount);
1538 interesting = calloc(sizeof(*interesting), ((size_t)1) << revcount);
1539 1539 if (interesting == NULL) {
1540 1540 PyErr_NoMemory();
1541 1541 goto bail;
General Comments 0
You need to be logged in to leave comments. Login now