~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/records.cc

  • 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:
515
515
  register uint i;
516
516
  ulong length;
517
517
  my_off_t rest_of_file;
518
 
  int16 error;
 
518
  int16_t error;
519
519
  uchar *position,*ref_position,*record_pos;
520
520
  ulong record;
521
521
 
568
568
      record=uint3korr(position);
569
569
      position+=3;
570
570
      record_pos=info->cache+record*info->reclength;
571
 
      if ((error=(int16) info->file->rnd_pos(record_pos,info->ref_pos)))
 
571
      if ((error=(int16_t) info->file->rnd_pos(record_pos,info->ref_pos)))
572
572
      {
573
573
        record_pos[info->error_offset]=1;
574
574
        shortstore(record_pos,error);