~mkindahl/drizzle/remove-mem-casts

« back to all changes in this revision

Viewing changes to storage/myisam/sort.c

  • Committer: Brian Aker
  • Date: 2008-07-23 00:11:39 UTC
  • Revision ID: brian@tangent.org-20080723001139-967ewfngqqotwb6e
Removed final uint dead types.

Show diffs side-by-side

added added

removed removed

Lines of Context:
647
647
my_var_write(MI_SORT_PARAM *info, IO_CACHE *to_file, uchar *bufs)
648
648
{
649
649
  int err;
650
 
  uint16 len = _mi_keylength(info->keyinfo, (uchar*) bufs);
 
650
  uint16_t len = _mi_keylength(info->keyinfo, (uchar*) bufs);
651
651
 
652
652
  /* The following is safe as this is a local file */
653
653
  if ((err= my_b_write(to_file, (uchar*)&len, sizeof(len))))
799
799
                                         uint sort_length)
800
800
{
801
801
  register uint count;
802
 
  uint16 length_of_key = 0;
 
802
  uint16_t length_of_key = 0;
803
803
  uint idx;
804
804
  uchar *buffp;
805
805