fix gcc warning in test
authorStefan Behnel <scoder@users.berlios.de>
Thu, 22 Apr 2010 10:53:57 +0000 (12:53 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Thu, 22 Apr 2010 10:53:57 +0000 (12:53 +0200)
tests/compile/libc_all.pyx

index 85a7a54bb2b1bbebb9d032855ae78e1f294e3589..8b2326232e8748fb74cbfc4314ed8c8c18583f1a 100644 (file)
@@ -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")