From de6a1bf3116f68cc34dffff837667921128e0f6e Mon Sep 17 00:00:00 2001 From: Lisandro Dalcin Date: Wed, 11 Mar 2009 11:36:55 -0200 Subject: [PATCH] fix typecast testcase, int and pointer have different sizes in 64 bits --- tests/compile/typecast.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/compile/typecast.pyx b/tests/compile/typecast.pyx index 93c1d2c6..9551afb7 100644 --- a/tests/compile/typecast.pyx +++ b/tests/compile/typecast.pyx @@ -1,7 +1,7 @@ cdef void f(obj): cdef int i=0 cdef char *p - p = i + p = &i obj = p p = obj -- 2.26.2