diff options
author | Andi Gutmans <andi@php.net> | 2000-10-04 19:29:28 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-10-04 19:29:28 +0000 |
commit | 6d92ac275d9072e013ec57debb018f4ae830d31a (patch) | |
tree | d7035d8b92aaba643b9d2076fad163f8c2f31838 /Zend/zend_alloc.c | |
parent | 5674f1be457e72ae87fd295ba58b240cd99d24c1 (diff) | |
download | php-git-6d92ac275d9072e013ec57debb018f4ae830d31a.tar.gz |
- Fix fprintf
Diffstat (limited to 'Zend/zend_alloc.c')
-rw-r--r-- | Zend/zend_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 4591a804be..537b8d68ff 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -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 } |