mirror of
https://github.com/neovim/neovim.git
synced 2025-10-02 07:58:35 +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_hashitem_T *item;
|
||||
blocknr_T key;
|
||||
long_u i;
|
||||
long_u num_buckets;
|
||||
size_t i;
|
||||
size_t num_buckets;
|
||||
|
||||
mf_hash_init(&ht);
|
||||
|
||||
|
Reference in New Issue
Block a user