From: Lisandro Dalcin Date: Wed, 11 Mar 2009 13:36:55 +0000 (-0200) Subject: fix typecast testcase, int and pointer have different sizes in 64 bits X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=de6a1bf3116f68cc34dffff837667921128e0f6e;p=cython.git fix typecast testcase, int and pointer have different sizes in 64 bits --- 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