From ee2c7095c4a5bb25a1a297358dd988452dd4c966 Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Sat, 3 Jul 2021 17:23:15 +0200 Subject: 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. --- src/nvim/testdir/samples/memfile_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/nvim/testdir/samples/memfile_test.c b/src/nvim/testdir/samples/memfile_test.c index c71a5c8f40..7023064637 100644 --- a/src/nvim/testdir/samples/memfile_test.c +++ b/src/nvim/testdir/samples/memfile_test.c @@ -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); -- cgit