summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli_api.c
diff options
context:
space:
mode:
authorHannes Magnusson <bjori@php.net>2006-10-08 13:34:24 +0000
committerHannes Magnusson <bjori@php.net>2006-10-08 13:34:24 +0000
commit176b72284c06793e51180eca0a03af1c8691d841 (patch)
tree917632aec222a34e274711b7bd19c4f6372187fd /ext/mysqli/mysqli_api.c
parent32d1b3ad5584b76b27024df186758b94c42c721a (diff)
downloadphp-git-176b72284c06793e51180eca0a03af1c8691d841.tar.gz
Error message clean up
(patch by Matt W (php_lists -AT- realpain.com))
Diffstat (limited to 'ext/mysqli/mysqli_api.c')
-rw-r--r--ext/mysqli/mysqli_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c
index bbbb5ce170..152c02e4f4 100644
--- a/ext/mysqli/mysqli_api.c
+++ b/ext/mysqli/mysqli_api.c
@@ -241,7 +241,7 @@ PHP_FUNCTION(mysqli_stmt_bind_result)
var_cnt = argc - start;
if (var_cnt != mysql_stmt_field_count(stmt->stmt)) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Number of bind variables doesn't match number of fields in prepared statement.");
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "Number of bind variables doesn't match number of fields in prepared statement");
efree(args);
RETURN_FALSE;
}