~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Olaf van der Spek
  • Date: 2011-08-22 19:14:08 UTC
  • mto: This revision was merged to the branch mainline in revision 2421.
  • Revision ID: olafvdspek@gmail.com-20110822191408-wg2dowhggydj6cf9
Refactor

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
}