mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fixed typecast
This commit is contained in:
parent
cf3d3cd86f
commit
0085cbffd8
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ static void zend_vm_trace_init(void)
|
||||||
|
|
||||||
f = fopen("zend_vm.map", "w+");
|
f = fopen("zend_vm.map", "w+");
|
||||||
if (f) {
|
if (f) {
|
||||||
zend_hash_sort(&vm_trace_ht, (compare_func_t)zend_vm_trace_compare, 0);
|
zend_hash_sort(&vm_trace_ht, (bucket_compare_func_t)zend_vm_trace_compare, 0);
|
||||||
prev_key = NULL;
|
prev_key = NULL;
|
||||||
ZEND_HASH_FOREACH_STR_KEY_VAL(&vm_trace_ht, key, val) {
|
ZEND_HASH_FOREACH_STR_KEY_VAL(&vm_trace_ht, key, val) {
|
||||||
if (prev_key) {
|
if (prev_key) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue