~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/checksum.cc

  • Committer: Brian Aker
  • Date: 2009-07-21 00:55:33 UTC
  • mfrom: (1093.1.21 captain)
  • Revision ID: brian@gaz-20090721005533-ran2v2otw7tbmiym
Merge Jay

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