~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_statrec.c

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
        goto err;
53
53
      if (info->s->base.pack_reclength != info->s->base.reclength)
54
54
      {
55
 
        uint length=info->s->base.pack_reclength - info->s->base.reclength;
 
55
        uint32_t length=info->s->base.pack_reclength - info->s->base.reclength;
56
56
        memset(temp, 0, length);
57
57
        if (my_b_write(&info->rec_cache, temp,length))
58
58
          goto err;
67
67
        goto err;
68
68
      if (info->s->base.pack_reclength != info->s->base.reclength)
69
69
      {
70
 
        uint length=info->s->base.pack_reclength - info->s->base.reclength;
 
70
        uint32_t length=info->s->base.pack_reclength - info->s->base.reclength;
71
71
        memset(temp, 0, length);
72
72
        if (info->s->file_write(info, temp,length,
73
73
                      info->state->data_file_length+
194
194
                               bool skip_deleted_blocks)
195
195
{
196
196
  int locked,error,cache_read;
197
 
  uint cache_length;
 
197
  uint32_t cache_length;
198
198
  MYISAM_SHARE *share=info->s;
199
199
 
200
200
  cache_read=0;