summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-01-27 14:41:15 +0000
committerBram Moolenaar <Bram@vim.org>2005-01-27 14:41:15 +0000
commit677ee6890d12218461196f5df92b4dc3d0e52129 (patch)
treec59a8f9d1b14e8c3abc4929c2b5f7a2b71698bdb /src/structs.h
parent10de2da0f567ae615913fe6bc9831590436af4e5 (diff)
downloadvim-git-677ee6890d12218461196f5df92b4dc3d0e52129.tar.gz
updated for version 7.0045
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/structs.h b/src/structs.h
index 19cfbe575..6482e30c8 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -936,8 +936,8 @@ typedef struct hashtable_S
{
long_u ht_mask; /* mask used for hash value (nr of items in
* array is "ht_mask" + 1) */
- int ht_used; /* number of items used */
- int ht_filled; /* number of items used + removed */
+ long_u ht_used; /* number of items used */
+ long_u ht_filled; /* number of items used + removed */
int ht_locked; /* counter for hash_lock() */
int ht_error; /* when set growing failed, can't add more
items before growing works */