~mordred/drizzle/add-drizzle-namespace

« back to all changes in this revision

Viewing changes to storage/myisam/myisamchk.cc

  • Committer: Eric Herman
  • Date: 2008-12-06 19:42:46 UTC
  • mto: (656.1.6 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: eric@mysql.com-20081206194246-5cdexuu81i366eek
removed trailing whitespace with simple script:

for file in $(find . -name "*.c") $(find . -name "*.cc") $(find . -name "*.h"); do ruby -pe 'gsub(/\s+$/, $/)' < $file > $file.out; mv $file.out $file; done;

Show diffs side-by-side

added added

removed removed

Lines of Context:
663
663
      exit(1);
664
664
    }
665
665
    switch (method-1) {
666
 
    case 0: 
 
666
    case 0:
667
667
      method_conv= MI_STATS_METHOD_NULLS_EQUAL;
668
668
      break;
669
669
    case 1:
1191
1191
      if (!(share->state.changed & STATE_NOT_SORTED_PAGES))
1192
1192
        pos=my_stpcpy(pos,"sorted index pages,");
1193
1193
      pos[-1]=0;                                /* Remove extra ',' */
1194
 
    }      
 
1194
    }
1195
1195
    printf("Status:              %s\n",buff);
1196
1196
    if (share->base.auto_key)
1197
1197
    {
1465
1465
  fn_format(param->temp_filename,name,"", MI_NAME_DEXT,2+4+32);
1466
1466
  new_file=my_create(fn_format(param->temp_filename,
1467
1467
                               param->temp_filename,"",
1468
 
                               DATA_TMP_EXT,2+4),        
 
1468
                               DATA_TMP_EXT,2+4),
1469
1469
                     0,param->tmpfile_createflag,
1470
1470
                     MYF(0));
1471
1471
  if (new_file < 0)