Commit 8454e2c2 authored by Keith Randall's avatar Keith Randall

runtime: Change size of map iter offset so 32-bit version compiles cleanly.

R=golang-codereviews, minux.ma
CC=golang-codereviews
https://golang.org/cl/52310043
parent 26cc1028
......@@ -746,7 +746,7 @@ struct hash_iter
byte *buckets; // bucket ptr at hash_iter initialization time
struct Bucket *bptr; // current bucket
uint32 offset; // intra-bucket offset to start from during iteration
uint8 offset; // intra-bucket offset to start from during iteration (should be big enough to hold BUCKETSIZE-1)
bool done;
// state of table at time iterator is initialized
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment