~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/checksum.c

  • Committer: Andy Lester
  • Date: 2008-08-09 05:13:22 UTC
  • mto: (266.1.29 use-replace-funcs)
  • mto: This revision was merged to the branch mainline in revision 287.
  • Revision ID: andy@petdance.com-20080809051322-dzas70no2mv6c9i5
removed incorrect comment

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 unsigned char *pos, size_t length)
 
32
ha_checksum my_checksum(ha_checksum crc, const uchar *pos, size_t length)
33
33
{
34
34
  return (ha_checksum)crc32((uint)crc, pos, length);
35
35
}