From: Stefan Behnel Date: Sat, 17 Oct 2009 12:33:20 +0000 (+0200) Subject: fix test case in C++ X-Git-Tag: 0.13.beta0~2^2~121^2~23 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=443e0f512823aaf3d79ac80c2794c5e7b3c53c89;p=cython.git fix test case in C++ --- diff --git a/tests/run/ctruthtests.pyx b/tests/run/ctruthtests.pyx index 3a66bd17..5014496a 100644 --- a/tests/run/ctruthtests.pyx +++ b/tests/run/ctruthtests.pyx @@ -38,8 +38,8 @@ def test_ptr(): return False def test_ptr2(): - cdef void* p1 = NULL - cdef void* p2 = NULL + cdef char* p1 = NULL + cdef char* p2 = NULL p1 += 1 if p1 and p2: