1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 22:41:20 +02:00

misplaced quote

This commit is contained in:
Andrey Hristov
2003-08-28 20:51:18 +00:00
parent 20383f9080
commit acb65b7c0a

View File

@@ -447,7 +447,7 @@ PHP_FUNCTION(mysqli_profiler)
RETURN_FALSE;
}
if (!(connection = php_mysqli_create_socket(name, port))) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "unable to connect to host %s on port %d, name, port");
php_error_docref(NULL TSRMLS_CC, E_WARNING, "unable to connect to host %s on port %d", name, port);
RETURN_FALSE;
}
prmain = ecalloc(1, sizeof(PR_MAIN));