summaryrefslogtreecommitdiff
path: root/main/main.c
diff options
context:
space:
mode:
authorStefan Esser <sesser@php.net>2003-03-06 20:31:20 +0000
committerStefan Esser <sesser@php.net>2003-03-06 20:31:20 +0000
commitaf4aa97d1ec853836f70601cb9666794476cd140 (patch)
tree9f674907222edd525084a127db195cddf82afbb7 /main/main.c
parent2d40fe2222f6b252423f3a1965f82104ba59a504 (diff)
downloadphp-git-af4aa97d1ec853836f70601cb9666794476cd140.tar.gz
Fixing functionicalls with variable number of parameters...
Diffstat (limited to 'main/main.c')
-rw-r--r--main/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c
index e2ef4aefe4..6a48bcd69e 100644
--- a/main/main.c
+++ b/main/main.c
@@ -839,7 +839,7 @@ static void php_message_handler_for_zend(long message, void *data)
# if defined(PHP_WIN32)
OutputDebugString(memory_leak_buf);
# else
- fprintf(stderr, memory_leak_buf);
+ fprintf(stderr, "%s", memory_leak_buf);
# endif
#endif
}