summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg.h
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-09-07 11:42:21 +0200
committerNikita Popov <nikita.ppv@gmail.com>2020-09-07 11:42:21 +0200
commitf5dbebd82e642b1d1af462b486fc392ecff2c67a (patch)
tree59c9eba8521db0a339f6f6479777b5ee893a2e92 /sapi/phpdbg/phpdbg.h
parent85b5dc4711f6ce8b979ed60e3b60cf93225be32a (diff)
downloadphp-git-f5dbebd82e642b1d1af462b486fc392ecff2c67a.tar.gz
Accept zend_string instead of zval in zend_compile_string
Diffstat (limited to 'sapi/phpdbg/phpdbg.h')
-rw-r--r--sapi/phpdbg/phpdbg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg.h b/sapi/phpdbg/phpdbg.h
index 5405155833..e5db725336 100644
--- a/sapi/phpdbg/phpdbg.h
+++ b/sapi/phpdbg/phpdbg.h
@@ -275,7 +275,7 @@ ZEND_BEGIN_MODULE_GLOBALS(phpdbg)
zend_op_array *(*compile_file)(zend_file_handle *file_handle, int type);
zend_op_array *(*init_compile_file)(zend_file_handle *file_handle, int type);
- zend_op_array *(*compile_string)(zval *source_string, const char *filename);
+ zend_op_array *(*compile_string)(zend_string *source_string, const char *filename);
HashTable file_sources;
FILE *oplog; /* opline log */