summaryrefslogtreecommitdiff
path: root/main/main.c
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2003-08-28 17:07:40 +0000
committerSascha Schumann <sas@php.net>2003-08-28 17:07:40 +0000
commitaf8e15b8db31582eb61db06d5c61bde4beeb8fa7 (patch)
tree976812dd21f6ce428db6defa3cf87dfe569e3ef7 /main/main.c
parent83bd1f4398fe6779b1b9b013394d66c37b48eab8 (diff)
downloadphp-git-af8e15b8db31582eb61db06d5c61bde4beeb8fa7.tar.gz
kill warnings
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 37af73c4fc..87ebf66194 100644
--- a/main/main.c
+++ b/main/main.c
@@ -519,7 +519,7 @@ PHPAPI void php_verror(const char *docref, const char *params, int type, const c
docref = get_active_function_name(TSRMLS_C);
if (!docref)
docref = "Unknown";
- php_error(type, "%s(%s): %s", class_name, space, docref, params, buffer);
+ php_error(type, "%s%s%s(%s): %s ", class_name, space, docref, params, buffer);
}
if (PG(track_errors) && EG(active_symbol_table)) {