~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/archive/ha_archive.cc

  • Committer: Brian Aker
  • Date: 2008-07-22 18:31:32 UTC
  • Revision ID: brian@tangent.org-20080722183132-ne2ntl7g7mdf2eez
uint32 -> uin32_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
694
694
  the bytes required for the length in the header.
695
695
*/
696
696
 
697
 
uint32 ha_archive::max_row_length(const uchar *buf __attribute__((__unused__)))
 
697
uint32_t ha_archive::max_row_length(const uchar *buf __attribute__((__unused__)))
698
698
{
699
 
  uint32 length= (uint32)(table->s->reclength + table->s->fields*2);
 
699
  uint32_t length= (uint32_t)(table->s->reclength + table->s->fields*2);
700
700
  length+= ARCHIVE_ROW_HEADER_SIZE;
701
701
 
702
702
  uint *ptr, *end;