From: mdw Date: Thu, 25 Jan 2001 21:12:38 +0000 (+0000) Subject: Use @ATOM_HASH@ rather than digging in the @atom@ structure. X-Git-Tag: 2.0.4~116 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/commitdiff_plain/efa99d05b9c747f4fe5adea9c57cacf513b5cc1a Use @ATOM_HASH@ rather than digging in the @atom@ structure. --- diff --git a/assoc.c b/assoc.c index 6779bc8..b8f5df0 100644 --- a/assoc.c +++ b/assoc.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: assoc.c,v 1.2 2001/01/21 19:04:59 mdw Exp $ + * $Id: assoc.c,v 1.3 2001/01/25 21:12:38 mdw Exp $ * * Assocation tables * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: assoc.c,v $ + * Revision 1.3 2001/01/25 21:12:38 mdw + * Use @ATOM_HASH@ rather than digging in the @atom@ structure. + * * Revision 1.2 2001/01/21 19:04:59 mdw * Fix bugs. * @@ -108,7 +111,7 @@ void assoc_destroy(assoc_table *t) void *assoc_find(assoc_table *t, atom *a, size_t sz, unsigned *f) { - hash_base **bin = HASH_BIN(&t->t, a->b.b.hash), **p; + hash_base **bin = HASH_BIN(&t->t, ATOM_HASH(a)), **p; assoc_base *q; /* --- Try to find the association --- */