From 0eff83333429738b2505321a61054721deb3ff90 Mon Sep 17 00:00:00 2001 From: orbea Date: Mon, 11 Feb 2019 17:06:48 -0800 Subject: [PATCH] Silence warning with --enable-python and 32-bit linux. Thanks hhromic! --- gfx/drivers_tracker/video_state_python.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/drivers_tracker/video_state_python.c b/gfx/drivers_tracker/video_state_python.c index 8c95734771..bf178ab06c 100644 --- a/gfx/drivers_tracker/video_state_python.c +++ b/gfx/drivers_tracker/video_state_python.c @@ -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);