diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2014-05-18 11:38:55 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2014-05-18 11:38:55 +0200 |
commit | 17039ed362a3dd02efe0f9c50f02c86f5d2c0de8 (patch) | |
tree | 3ce74f7b0d8a64d89b1f43de225cfeac5def9a6b | |
parent | c8d8e851fa7b8993c935d0f978bfa7eac62f484d (diff) | |
download | php-git-17039ed362a3dd02efe0f9c50f02c86f5d2c0de8.tar.gz |
PHP 5.4/5.5 compability in phpdbg_watch.c
-rw-r--r-- | phpdbg_watch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpdbg_watch.c b/phpdbg_watch.c index 2efbb1237c..e88622444b 100644 --- a/phpdbg_watch.c +++ b/phpdbg_watch.c @@ -580,7 +580,7 @@ void phpdbg_setup_watchpoints(TSRMLS_D) { zend_llist_init(&PHPDBG_G(watchlist_mem), sizeof(void *), phpdbg_watch_mem_dtor, 1); phpdbg_btree_init(&PHPDBG_G(watchpoint_tree), sizeof(void *) * 8); phpdbg_btree_init(&PHPDBG_G(watch_HashTables), sizeof(void *) * 8); - _zend_hash_init(&PHPDBG_G(watchpoints), 8, phpdbg_watch_dtor, 0 ZEND_FILE_LINE_CC); + zend_hash_init(&PHPDBG_G(watchpoints), 8, NULL, phpdbg_watch_dtor, 0 ZEND_FILE_LINE_CC); } static void phpdbg_print_changed_zval(phpdbg_watch_memdump *dump TSRMLS_DC) { |