~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/checksum.c

Merged in changes from Andrey.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
      length    length of the block
30
30
*/
31
31
 
32
 
ha_checksum my_checksum(ha_checksum crc, const uchar *pos, size_t length)
 
32
ha_checksum my_checksum(ha_checksum crc, const unsigned char *pos, size_t length)
33
33
{
34
34
  return (ha_checksum)crc32((uint)crc, pos, length);
35
35
}