~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_radix.c

  • Committer: Brian Aker
  • Date: 2008-08-07 16:29:49 UTC
  • mfrom: (264.1.20 codestyle)
  • Revision ID: brian@tangent.org-20080807162949-7o8eyjgdn8ms3n1a
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
  end=base+number_of_elements; count_end=count+256;
35
35
  for (pass=(int) size_of_element-1 ; pass >= 0 ; pass--)
36
36
  {
37
 
    memset((uchar*) count, 0, sizeof(uint32_t)*256);
 
37
    memset(count, 0, sizeof(uint32_t)*256);
38
38
    for (ptr= base ; ptr < end ; ptr++)
39
39
      count[ptr[0][pass]]++;
40
40
    if (count[0] == number_of_elements)