diff options
author | Anatol Belski <ab@php.net> | 2014-12-14 14:07:59 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-12-14 14:07:59 +0100 |
commit | e112f6a04e0cddc6276c426c09c0249201878f5a (patch) | |
tree | 03b914303e60fce6ee830eac907cf323f7702722 /ext/mysqlnd/php_mysqlnd.c | |
parent | bdeb220f48825642f84cdbf3ff23a30613c92e86 (diff) | |
download | php-git-e112f6a04e0cddc6276c426c09c0249201878f5a.tar.gz |
second shot on removing TSRMLS_*
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 01e71618e6..92128d7715 100644 --- a/ext/mysqlnd/php_mysqlnd.c +++ b/ext/mysqlnd/php_mysqlnd.c @@ -64,7 +64,7 @@ mysqlnd_minfo_dump_plugin_stats(zval *el, void * argument) zval values; snprintf(buf, sizeof(buf), "%s statistics", plugin_header->plugin_name); - mysqlnd_fill_stats_hash(plugin_header->plugin_stats.values, plugin_header->plugin_stats.names, &values TSRMLS_CC ZEND_FILE_LINE_CC); + mysqlnd_fill_stats_hash(plugin_header->plugin_stats.values, plugin_header->plugin_stats.names, &values ZEND_FILE_LINE_CC); php_info_print_table_start(); php_info_print_table_header(2, buf, ""); |