From 0d371532bc77ec7e9f9cac3b982cc906677b5767 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 22 Apr 2010 12:53:57 +0200 Subject: [PATCH] fix gcc warning in test --- tests/compile/libc_all.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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") -- 2.26.2