~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/hash.cc

  • Committer: Super-User
  • Date: 2008-11-23 01:08:08 UTC
  • mto: This revision was merged to the branch mainline in revision 602.
  • Revision ID: root@bitters-20081123010808-7cenki9nrcjjdz4d
Fixed solaris build crap.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
_hash_init(HASH *hash,uint32_t growth_size, const CHARSET_INFO * const charset,
59
59
           uint32_t size, size_t key_offset, size_t key_length,
60
60
           hash_get_key get_key,
61
 
           void (*free_element)(void*),uint32_t flags)
 
61
           hash_free_key free_element, uint32_t flags)
62
62
{
63
63
  hash->records=0;
64
64
  if (my_init_dynamic_array_ci(&hash->array, sizeof(HASH_LINK), size,