From: Antony Dovgal Date: Thu, 17 Mar 2005 18:12:06 +0000 (+0000) Subject: fix typo in error message X-Git-Tag: php-5.0.1b1~771 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=646bb715030583352ae8fbfe7ca48a94e39adc02;p=php fix typo in error message --- diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c index 86354d15df..80777292e7 100644 --- a/ext/mysqli/mysqli_api.c +++ b/ext/mysqli/mysqli_api.c @@ -244,7 +244,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 statmement."); + 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; }