diff options
author | Johannes Schlüter <johannes@php.net> | 2011-09-01 12:04:54 +0000 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2011-09-01 12:04:54 +0000 |
commit | f90bead78aeba984b847874a17103156e4bdad73 (patch) | |
tree | 5c940e46911e8b887e1b809d61ecbfa02b275566 /ext/mysqlnd/php_mysqlnd.c | |
parent | 5639fc846dc6c531dabac3a050f2e561b6344187 (diff) | |
download | php-git-f90bead78aeba984b847874a17103156e4bdad73.tar.gz |
- Fix TSRM build
Diffstat (limited to 'ext/mysqlnd/php_mysqlnd.c')
-rw-r--r-- | ext/mysqlnd/php_mysqlnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/php_mysqlnd.c b/ext/mysqlnd/php_mysqlnd.c index 2f477c6c95..e687d1fc40 100644 --- a/ext/mysqlnd/php_mysqlnd.c +++ b/ext/mysqlnd/php_mysqlnd.c @@ -188,7 +188,7 @@ PHP_MINFO_FUNCTION(mysqlnd) php_info_print_table_row(2, "Loaded plugins", tmp_str.c); smart_str_free(&tmp_str); - zend_hash_apply_with_argument(mysqlnd_get_api_extensions(), mysqlnd_minfo_dump_api_plugins, &tmp_str); + zend_hash_apply_with_argument(mysqlnd_get_api_extensions(), mysqlnd_minfo_dump_api_plugins, &tmp_str TSRMLS_CC); smart_str_0(&tmp_str); php_info_print_table_row(2, "API Extensions", tmp_str.c); smart_str_free(&tmp_str); |