summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg_list.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-08-25 10:39:43 +0200
committerAnatol Belski <ab@php.net>2015-08-25 10:39:43 +0200
commit7366e29662f2b514a4d2603ea0b06e4bd1628f60 (patch)
tree1a0cec0cb3bd5e7d3813ad50edb4fa44a103eada /sapi/phpdbg/phpdbg_list.c
parent2482325b3d9c45603d4fc5f7c6f7baef0e958a58 (diff)
downloadphp-git-7366e29662f2b514a4d2603ea0b06e4bd1628f60.tar.gz
fix build, use exported symbol
Diffstat (limited to 'sapi/phpdbg/phpdbg_list.c')
-rw-r--r--sapi/phpdbg/phpdbg_list.c2
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);