aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2021-07-03 17:23:15 +0200
committerGitHub <noreply@github.com>2021-07-03 08:23:15 -0700
commitee2c7095c4a5bb25a1a297358dd988452dd4c966 (patch)
treef1b4f9e1f99ed3193808b72e922e80f3e2a532a7 /src
parent70223babb056f3e03cc32034f5dd1b3d719d56dd (diff)
downloadrneovim-ee2c7095c4a5bb25a1a297358dd988452dd4c966.tar.gz
rneovim-ee2c7095c4a5bb25a1a297358dd988452dd4c966.tar.bz2
rneovim-ee2c7095c4a5bb25a1a297358dd988452dd4c966.zip
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.
Diffstat (limited to 'src')
-rw-r--r--src/nvim/testdir/samples/memfile_test.c4
1 files changed, 2 insertions, 2 deletions
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);