@@ -48,7 +48,7 @@ static zend_always_inline int pcbc_get_parameters_array_ex(int param_count, PCBC
48
48
49
49
#if PHP_VERSION_ID >= 70000
50
50
#define PCBC_HASH_GET_CURRENT_DATA_EX (ht , pos ) zend_hash_get_current_data_ex(ht, pos)
51
- static zend_always_inline int pcbc_hash_str_get_current_key_ex (HashTable * ht , char * * str , uint * len ,
51
+ static zend_always_inline int pcbc_hash_str_get_current_key_ex (HashTable * ht , char * * str , unsigned * len ,
52
52
zend_ulong * num_index , HashPosition * pos )
53
53
{
54
54
zend_string * zstr = NULL ;
@@ -72,10 +72,10 @@ static zend_always_inline PCBC_ZVAL *pcbc_hash_get_current_data_ex(HashTable *ht
72
72
return result ;
73
73
}
74
74
#define PCBC_HASH_GET_CURRENT_DATA_EX (ht , pos ) pcbc_hash_get_current_data_ex(ht, pos)
75
- static zend_always_inline int pcbc_hash_str_get_current_key_ex (HashTable * ht , char * * str , uint * len ,
75
+ static zend_always_inline int pcbc_hash_str_get_current_key_ex (HashTable * ht , char * * str , unsigned * len ,
76
76
zend_ulong * num_index , HashPosition * pos )
77
77
{
78
- uint len_out = 0 ;
78
+ unsigned len_out = 0 ;
79
79
int key_type = zend_hash_get_current_key_ex (ht , str , & len_out , num_index , 0 , pos );
80
80
if (len != NULL ) {
81
81
* len = len_out - 1 ;
@@ -252,7 +252,7 @@ int pcbc_pp_next(pcbc_pp_state *state)
252
252
PCBC_ZVAL * data ;
253
253
zend_ulong keyidx , key_type ;
254
254
char * keystr ;
255
- uint keystr_len ;
255
+ unsigned keystr_len ;
256
256
257
257
data = PCBC_HASH_GET_CURRENT_DATA_EX (hash , & state -> hash_pos );
258
258
if (data == 0 ) {
0 commit comments