From: Stefan Behnel Date: Thu, 22 Apr 2010 10:53:57 +0000 (+0200) Subject: fix gcc warning in test X-Git-Tag: 0.13.beta0~164 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0d371532bc77ec7e9f9cac3b982cc906677b5767;p=cython.git fix gcc warning in test --- diff --git a/tests/compile/libc_all.pyx b/tests/compile/libc_all.pyx index 85a7a54b..8b232623 100644 --- a/tests/compile/libc_all.pyx +++ b/tests/compile/libc_all.pyx @@ -34,6 +34,6 @@ from libc.stdio cimport * from libc.stdlib cimport * from libc.string cimport * -libc.stdio.printf("hello\n") -stdio.printf("hello\n") -printf("hello\n") +libc.stdio.printf("hello %s\n", b"world") +stdio.printf("hello %s\n", b"world") +printf("hello %s\n", b"world")