diff options
author | Marcus Boerger <helly@php.net> | 2003-12-13 13:44:56 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-12-13 13:44:56 +0000 |
commit | 04d0d99b11b1d15d05fe968f3904994a65df052f (patch) | |
tree | 2ebb021bd08e74d2f52a1d4e0a835220cb711330 /ext/mysqli/mysqli_report.c | |
parent | 32f41d172d6131cbb98d5c73c7cba82a30170044 (diff) | |
download | php-git-04d0d99b11b1d15d05fe968f3904994a65df052f.tar.gz |
ZTS fixes
Diffstat (limited to 'ext/mysqli/mysqli_report.c')
-rw-r--r-- | ext/mysqli/mysqli_report.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqli/mysqli_report.c b/ext/mysqli/mysqli_report.c index 5e0b6d41dc..61f154678d 100644 --- a/ext/mysqli/mysqli_report.c +++ b/ext/mysqli/mysqli_report.c @@ -52,13 +52,13 @@ PHP_FUNCTION(mysqli_report) /* }}} */ /* {{{ void php_mysqli_report_error(char *sqlstate, int errorno, char *error) */ -void php_mysqli_report_error(char *sqlstate, int errorno, char *error) { +void php_mysqli_report_error(char *sqlstate, int errorno, char *error TSRMLS_DC) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error (%s/%d): %s", sqlstate, errorno, error); } /* }}} */ /* {{{ void php_mysqli_report_index() */ -void php_mysqli_report_index(char *query, unsigned int status) { +void php_mysqli_report_index(char *query, unsigned int status TSRMLS_DC) { char index[15]; if (status & SERVER_QUERY_NO_GOOD_INDEX_USED) { |