~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/utilities/transaction_file_reader.cc

  • Committer: Mark Atwood
  • Date: 2011-09-16 17:16:41 UTC
  • mfrom: (2409.3.4 rf)
  • Revision ID: me@mark.atwood.name-20110916171641-ri5n2bd1xsqi5jfb
mergeĀ lp:~olafvdspek/drizzle/refactor7

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
 
190
190
uint32_t TransactionFileReader::checksumLastReadTransaction()
191
191
{
192
 
  return drizzled::algorithm::crc32(buffer,
193
 
                                    static_cast<size_t>(previous_length));
 
192
  return drizzled::algorithm::crc32(buffer, static_cast<size_t>(previous_length));
194
193
}