mirror of
https://github.com/neovim/neovim.git
synced 2025-10-02 16:08:36 +00: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:
@@ -37,8 +37,8 @@ test_mf_hash(void)
|
|||||||
mf_hashtab_T ht;
|
mf_hashtab_T ht;
|
||||||
mf_hashitem_T *item;
|
mf_hashitem_T *item;
|
||||||
blocknr_T key;
|
blocknr_T key;
|
||||||
long_u i;
|
size_t i;
|
||||||
long_u num_buckets;
|
size_t num_buckets;
|
||||||
|
|
||||||
mf_hash_init(&ht);
|
mf_hash_init(&ht);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user