diff options
author | Xinchen Hui <laruence@gmail.com> | 2014-02-17 15:17:53 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2014-02-17 15:17:53 +0800 |
commit | 028bdea3db04a30f3d15fc7a67e2f8f33f7dfeef (patch) | |
tree | b804387e56e7dafaa04c9eb70aeb6c5bcc75e312 /sapi/phpdbg/phpdbg_bp.h | |
parent | ab2a73a6629850bfd131996a54ca649cfd455f01 (diff) | |
download | php-git-028bdea3db04a30f3d15fc7a67e2f8f33f7dfeef.tar.gz |
Use better data structures (incomplete)
Diffstat (limited to 'sapi/phpdbg/phpdbg_bp.h')
-rw-r--r-- | sapi/phpdbg/phpdbg_bp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_bp.h b/sapi/phpdbg/phpdbg_bp.h index b1a9ddf474..9356380cf7 100644 --- a/sapi/phpdbg/phpdbg_bp.h +++ b/sapi/phpdbg/phpdbg_bp.h @@ -138,7 +138,7 @@ PHPDBG_API void phpdbg_disable_breakpoints(TSRMLS_D); /* }}} */ /* {{{ Breakbase API */ PHPDBG_API phpdbg_breakbase_t *phpdbg_find_breakbase(zend_ulong id TSRMLS_DC); -PHPDBG_API phpdbg_breakbase_t *phpdbg_find_breakbase_ex(zend_ulong id, HashTable ***table, HashPosition *position TSRMLS_DC); /* }}} */ +PHPDBG_API phpdbg_breakbase_t *phpdbg_find_breakbase_ex(zend_ulong id, HashTable **table, HashPosition *position TSRMLS_DC); /* }}} */ /* {{{ Breakpoint Exportation API */ PHPDBG_API void phpdbg_export_breakpoints(FILE *handle TSRMLS_DC); /* }}} */ |