summaryrefslogtreecommitdiff
path: root/sapi/servlet/servlet.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 /sapi/servlet/servlet.c
parent2d40fe2222f6b252423f3a1965f82104ba59a504 (diff)
downloadphp-git-af4aa97d1ec853836f70601cb9666794476cd140.tar.gz
Fixing functionicalls with variable number of parameters...
Diffstat (limited to 'sapi/servlet/servlet.c')
-rw-r--r--sapi/servlet/servlet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/servlet/servlet.c b/sapi/servlet/servlet.c
index 6635f64085..e82a4dd1b1 100644
--- a/sapi/servlet/servlet.c
+++ b/sapi/servlet/servlet.c
@@ -109,7 +109,7 @@ void ThrowServletException (JNIEnv *jenv, char *msg) {
static int sapi_servlet_ub_write(const char *str, uint str_length TSRMLS_DC)
{
if (!SG(server_context)) {
- fprintf(stderr, str);
+ fprintf(stderr, "%s", str);
return 0;
}