From e7d3e20912baa82965108997013710223152772c Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Sat, 21 May 2011 00:42:08 +0000 Subject: remove keyboard stuff from other ports, make openssl and python compile on arm --- sys/src/cmd/python/Python/marshal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/src/cmd/python/Python/marshal.c') diff --git a/sys/src/cmd/python/Python/marshal.c b/sys/src/cmd/python/Python/marshal.c index 776836e55..7940ce18a 100644 --- a/sys/src/cmd/python/Python/marshal.c +++ b/sys/src/cmd/python/Python/marshal.c @@ -971,7 +971,7 @@ PyMarshal_ReadLastObjectFromFile(FILE *fp) if (filesize <= SMALL_FILE_LIMIT) pBuf = buf; else if (filesize <= REASONABLE_FILE_LIMIT) - pBuf = (char *)PyMem_MALLOC(filesize); + pBuf = (char *)PyMem_MALLOC((int)filesize); if (pBuf != NULL) { PyObject* v; size_t n; -- cgit v1.2.3