mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
refactor(memfile_test): replace long_u type with size_t. #14974
long_u was a custom integer type that is no longer used. More information can be found in https://github.com/neovim/neovim/issues/459.
This commit is contained in:
parent
70223babb0
commit
ee2c7095c4
@ -37,8 +37,8 @@ test_mf_hash(void)
|
||||
mf_hashtab_T ht;
|
||||
mf_hashitem_T *item;
|
||||
blocknr_T key;
|
||||
long_u i;
|
||||
long_u num_buckets;
|
||||
size_t i;
|
||||
size_t num_buckets;
|
||||
|
||||
mf_hash_init(&ht);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user