Commit 0d371532 authored by Stefan Behnel's avatar Stefan Behnel

fix gcc warning in test

parent 979c1b6e
...@@ -34,6 +34,6 @@ from libc.stdio cimport * ...@@ -34,6 +34,6 @@ from libc.stdio cimport *
from libc.stdlib cimport * from libc.stdlib cimport *
from libc.string cimport * from libc.string cimport *
libc.stdio.printf("hello\n") libc.stdio.printf("hello %s\n", b"world")
stdio.printf("hello\n") stdio.printf("hello %s\n", b"world")
printf("hello\n") printf("hello %s\n", b"world")
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment