mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-07-04 20:03:20 +03:00
Fix another bad cast syntax
This commit is contained in:
parent
40d9732a40
commit
80d7fa9004
|
@ -365,7 +365,7 @@ exit:
|
||||||
} else if (found_tk != 1) {
|
} else if (found_tk != 1) {
|
||||||
PyErr_SetString(PyExc_RuntimeError, "Could not find Tk routines");
|
PyErr_SetString(PyExc_RuntimeError, "Could not find Tk routines");
|
||||||
}
|
}
|
||||||
return int((found_tcl != 1) && (found_tk != 1));
|
return (int) ((found_tcl != 1) && (found_tk != 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
#else /* not Windows */
|
#else /* not Windows */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user