Commit 9795c9e7 authored by Ken Thompson's avatar Ken Thompson

temp fix for map not multiple of 8

R=r
OCL=19166
CL=19166
parent bc0b4f0d
......@@ -125,6 +125,7 @@ hash_init (struct hash *h,
if(datasize < sizeof (void *))
datasize = sizeof (void *);
datasize = rnd(datasize, 8);
init_sizes (hint, &init_power, &max_power);
h->datasize = datasize;
h->max_power = max_power;
......
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