Commit:    b55e69285bdfa280b94673e8a9434be6c08c65dc
Author:    Stanislav Malyshev <s...@php.net>         Sun, 10 Jun 2012 20:38:22 
-0700
Parents:   51a5e98af66bcba79699a86312c1a14f96cf06ce
Branches:  PHP-5.4 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=b55e69285bdfa280b94673e8a9434be6c08c65dc

Log:
typo fix

Changed paths:
  M  main/main.c


Diff:
diff --git a/main/main.c b/main/main.c
index c34f952..709c6dd 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);


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to