~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/checksum.cc

  • Committer: lbieber
  • Date: 2009-07-28 15:08:13 UTC
  • mfrom: (1100 staging)
  • mto: (1093.1.34 captain)
  • mto: This revision was merged to the branch mainline in revision 1105.
  • Revision ID: lbieber@lbieber-laptop-20090728150813-vdmchh23gbrtbo4b
fix read_many_rows_innodb test to use InnoDB instead of MyISAM for now

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
ha_checksum my_checksum(ha_checksum crc, const unsigned char *pos, size_t length)
32
32
{
33
 
  return (ha_checksum)crc32((uint32_t)crc, pos, length);
 
33
  return ha_checksum(crc32((uint32_t)crc, pos, uInt(length)));
34
34
}
35
35