Silence warning with --enable-python and 32-bit linux.

Thanks hhromic!
This commit is contained in:
orbea 2019-02-11 17:06:48 -08:00
parent 0c790d89dc
commit 0eff833334

View File

@ -314,7 +314,7 @@ py_state_t *py_state_new(const char *script,
* isn't standardized across environments.
* PyRun_SimpleFile() breaks on Windows because it's
* compiled with MSVC. */
ssize_t len;
int64_t len;
char *script_ = NULL;
bool ret = filestream_read_file
(script, (void**)&script_, &len);