~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/checksum.cc

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

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((uint)crc, pos, length);
 
33
  return (ha_checksum)crc32((uint32_t)crc, pos, length);
34
34
}
35
35