@@ -572,7 +572,7 @@ int redis_zrangebyscore_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
572572 size_t key_len , start_len , end_len ;
573573 zval * z_opt = NULL , * z_ele ;
574574 zend_string * zkey ;
575- ulong idx ;
575+ zend_ulong idx ;
576576 HashTable * ht_opt ;
577577
578578 PHPREDIS_NOTUSED (idx );
@@ -1329,7 +1329,7 @@ int redis_set_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
13291329 if (z_opts && Z_TYPE_P (z_opts ) == IS_ARRAY ) {
13301330 HashTable * kt = Z_ARRVAL_P (z_opts );
13311331 zend_string * zkey ;
1332- ulong idx ;
1332+ zend_ulong idx ;
13331333 zval * v ;
13341334
13351335 PHPREDIS_NOTUSED (idx );
@@ -1632,7 +1632,7 @@ int redis_hmset_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
16321632 char * key ;
16331633 int key_free , count ;
16341634 size_t key_len ;
1635- ulong idx ;
1635+ zend_ulong idx ;
16361636 zval * z_arr ;
16371637 HashTable * ht_vals ;
16381638 smart_string cmdstr = {0 };
@@ -2723,7 +2723,7 @@ geoStoreType get_georadius_store_type(zend_string *key) {
27232723
27242724/* Helper function to extract optional arguments for GEORADIUS and GEORADIUSBYMEMBER */
27252725static int get_georadius_opts (HashTable * ht , geoOptions * opts ) {
2726- ulong idx ;
2726+ zend_ulong idx ;
27272727 char * optstr ;
27282728 zend_string * zkey ;
27292729 zval * optval ;
@@ -3214,7 +3214,7 @@ int redis_xadd_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
32143214 zval * z_fields , * value ;
32153215 zend_long maxlen = 0 ;
32163216 zend_bool approx = 0 ;
3217- ulong idx ;
3217+ zend_ulong idx ;
32183218 HashTable * ht_fields ;
32193219 int fcount , argc ;
32203220 char * key , * id ;
@@ -3356,7 +3356,7 @@ append_stream_args(smart_string *cmdstr, HashTable *ht, RedisSock *redis_sock,
33563356 zend_string * key , * idstr ;
33573357 short oldslot ;
33583358 zval * * id ;
3359- ulong idx ;
3359+ zend_ulong idx ;
33603360
33613361 /* Append STREAM qualifier */
33623362 REDIS_CMD_APPEND_SSTR_STATIC (cmdstr , "STREAMS" );
@@ -3619,7 +3619,7 @@ static void get_xclaim_options(zval *z_arr, xclaimOptions *opt) {
36193619 zend_string * zkey ;
36203620 char * kval ;
36213621 size_t klen ;
3622- ulong idx ;
3622+ zend_ulong idx ;
36233623 zval * zv ;
36243624
36253625 PHPREDIS_NOTUSED (idx );
0 commit comments