]> granicus.if.org Git - php/commitdiff
- Fix fprintf
authorAndi Gutmans <andi@php.net>
Wed, 4 Oct 2000 19:29:28 +0000 (19:29 +0000)
committerAndi Gutmans <andi@php.net>
Wed, 4 Oct 2000 19:29:28 +0000 (19:29 +0000)
Zend/zend_alloc.c

index 4591a804beecfe0196e6e31a3b07d40f19fe69be..537b8d68ffe73f366b76828b826ee8a28599a258 100644 (file)
@@ -520,7 +520,7 @@ void zend_debug_alloc_output(char *format, ...)
 #ifdef ZEND_WIN32
        OutputDebugString(output_buf);
 #else
-       fprintf(stderr, output_buf);
+       fprintf(stderr, "%s", output_buf);
 #endif
 }