~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_open.c

  • 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:
896
896
  base->extra_alloc_procent = *ptr++;
897
897
 
898
898
  /* advance past raid_type (1) raid_chunks (2) and raid_chunksize (4) */
899
 
  ptr+= 7; 
 
899
  ptr+= 7;
900
900
 
901
901
  ptr+=6;
902
902
  return ptr;
959
959
  pos= keyseg->null_bit ? keyseg->null_pos : keyseg->bit_pos;
960
960
  mi_int4store(ptr, pos);
961
961
  ptr+=4;
962
 
  
 
962
 
963
963
  return my_write(file, buff, (size_t) (ptr-buff), MYF(MY_NABP)) != 0;
964
964
}
965
965