diff options
author | Ondřej Surý <ondrej@sury.org> | 2011-10-06 08:56:49 +0200 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2011-10-06 08:56:49 +0200 |
commit | 766f2d101fd4d91ab470b79fdf93cbc2fc72c515 (patch) | |
tree | 2c31b83dcf58f1e6a997e7603e57c856ae608c0e /src/pkg/runtime/hashmap.h | |
parent | 9ad2a96babca1e646856b4335875b975f9bb7fa1 (diff) | |
download | golang-766f2d101fd4d91ab470b79fdf93cbc2fc72c515.tar.gz |
Imported Upstream version 60.2upstream/60.2
Diffstat (limited to 'src/pkg/runtime/hashmap.h')
-rw-r--r-- | src/pkg/runtime/hashmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/hashmap.h b/src/pkg/runtime/hashmap.h index 19ff41697..81b0cff88 100644 --- a/src/pkg/runtime/hashmap.h +++ b/src/pkg/runtime/hashmap.h @@ -87,7 +87,7 @@ struct hash_iter { struct hash_iter_sub { struct hash_entry *e; /* pointer into subtable */ struct hash_entry *start; /* start of subtable */ - struct hash_entry *end; /* end of subtable */ + struct hash_entry *last; /* last entry in subtable */ } subtable_state[4]; /* Should be large enough unless the hashing is so bad that many distinct data values hash to the same hash value. */ |