summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2012-06-10 20:38:22 -0700
committerStanislav Malyshev <stas@php.net>2012-06-10 20:38:22 -0700
commitb55e69285bdfa280b94673e8a9434be6c08c65dc (patch)
treed5b45d1e156c5c8574b20d05bf7b2a75de6cc275
parent51a5e98af66bcba79699a86312c1a14f96cf06ce (diff)
downloadphp-git-b55e69285bdfa280b94673e8a9434be6c08c65dc.tar.gz
typo fix
-rw-r--r--main/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c
index c34f952433..709c6dd3d9 100644
--- a/main/main.c
+++ b/main/main.c
@@ -1080,7 +1080,7 @@ static void php_error_cb(int type, const char *error_filename, const uint error_
PG(display_errors) == PHP_DISPLAY_ERRORS_STDERR
) {
#ifdef PHP_WIN32
- fprintf(stderr, "%s: %s in %s on line%d\n", error_type_str, buffer, error_filename, error_lineno);
+ fprintf(stderr, "%s: %s in %s on line %d\n", error_type_str, buffer, error_filename, error_lineno);
fflush(stderr);
#else
fprintf(stderr, "%s: %s in %s on line %d\n", error_type_str, buffer, error_filename, error_lineno);