diff options
author | Anatol Belski <ab@php.net> | 2015-08-25 10:39:43 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2015-08-25 10:39:43 +0200 |
commit | 7366e29662f2b514a4d2603ea0b06e4bd1628f60 (patch) | |
tree | 1a0cec0cb3bd5e7d3813ad50edb4fa44a103eada /sapi/phpdbg/phpdbg_list.c | |
parent | 2482325b3d9c45603d4fc5f7c6f7baef0e958a58 (diff) | |
download | php-git-7366e29662f2b514a4d2603ea0b06e4bd1628f60.tar.gz |
fix build, use exported symbol
Diffstat (limited to 'sapi/phpdbg/phpdbg_list.c')
-rw-r--r-- | sapi/phpdbg/phpdbg_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_list.c b/sapi/phpdbg/phpdbg_list.c index 2424103480..1a73a2c0b4 100644 --- a/sapi/phpdbg/phpdbg_list.c +++ b/sapi/phpdbg/phpdbg_list.c @@ -349,7 +349,7 @@ zend_op_array *phpdbg_compile_string(zval *source_string, char *filename) { return NULL; } - fake_name = zend_strpprintf(0, "%s\0%p", filename, op_array->opcodes); + fake_name = strpprintf(0, "%s\0%p", filename, op_array->opcodes); dataptr = erealloc(dataptr, sizeof(phpdbg_file_source) + sizeof(uint) * line); zend_hash_add_ptr(&PHPDBG_G(file_sources), fake_name, dataptr); |