From 2d9ecc3d805e616b2bf85c0b8e99737e9b30c89d Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Tue, 20 Mar 2012 22:56:33 +0100 Subject: cython: Update to latest API and fix deprecation warnings with cython 0.13+ --- cython/screenshotr.pxi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cython/screenshotr.pxi') diff --git a/cython/screenshotr.pxi b/cython/screenshotr.pxi index 9213b64..a53fab2 100644 --- a/cython/screenshotr.pxi +++ b/cython/screenshotr.pxi @@ -55,7 +55,7 @@ cdef class ScreenshotrClient(DeviceLinkService): return result except Exception, e: if c_data != NULL: - stdlib.free(c_data) + free(c_data) raise cdef inline BaseError _error(self, int16_t ret): -- cgit v1.1-32-gdbae