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:
dundargoc 2021-07-03 17:23:15 +02:00 committed by GitHub
parent 70223babb0
commit ee2c7095c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);