From 443e0f512823aaf3d79ac80c2794c5e7b3c53c89 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 17 Oct 2009 14:33:20 +0200 Subject: [PATCH] fix test case in C++ --- tests/run/ctruthtests.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: -- 2.26.2