~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/hash.c

  • Committer: Monty Taylor
  • Date: 2008-08-01 23:59:59 UTC
  • mto: (236.1.42 codestyle)
  • mto: This revision was merged to the branch mainline in revision 261.
  • Revision ID: monty@inaugust.com-20080801235959-n8ypy9r5aohown77
Gettext error compiles and passes test!

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
                               growth_size))
57
57
  {
58
58
    hash->free=0;                               /* Allow call to hash_free */
59
 
    return(1);
 
59
    return true;
60
60
  }
61
61
  hash->key_offset=key_offset;
62
62
  hash->key_length=key_length;
65
65
  hash->free=free_element;
66
66
  hash->flags=flags;
67
67
  hash->charset=charset;
68
 
  return(0);
 
68
  return false;
69
69
}
70
70
 
71
71