From b55e69285bdfa280b94673e8a9434be6c08c65dc Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Sun, 10 Jun 2012 20:38:22 -0700 Subject: [PATCH] typo fix --- main/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/main.c b/main/main.c index c34f952433a61..709c6dd3d9fa6 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);