##// END OF EJS Templates
parsers.c: avoid implicit conversion loses integer precision warning...
André Sintzoff -
r24622:1e05f116 default
parent child Browse files
Show More
@@ -189,7 +189,7 b' static PyObject *make_file_foldmap(PyObj'
189 &PyFunction_Type, &normcase_fallback))
189 &PyFunction_Type, &normcase_fallback))
190 goto quit;
190 goto quit;
191
191
192 spec = PyInt_AS_LONG(spec_obj);
192 spec = (int)PyInt_AS_LONG(spec_obj);
193 switch (spec) {
193 switch (spec) {
194 case NORMCASE_LOWER:
194 case NORMCASE_LOWER:
195 table = lowertable;
195 table = lowertable;
General Comments 0
You need to be logged in to leave comments. Login now