1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

actually set all 8 hashsets in classes

* libguile/goops.c (prep_hashsets): Actually set all 8 hashsets. Doh...
This commit is contained in:
Andy Wingo 2009-11-03 22:43:29 +01:00
parent 4d34fbe181
commit e161c9f85c

View file

@ -791,7 +791,7 @@ prep_hashsets (SCM class)
{
unsigned int i;
for (i = 0; i < 7; ++i)
for (i = 0; i < 8; ++i)
SCM_SET_HASHSET (class, i, scm_c_uniform32 (goops_rstate));
}