Squashed commit of the following:
commit
8b6ed886036a2e6bdf86a07aff0161503d363447
Author: Joel Cornett <joel.cornett@gmail.com>
Date: Thu Feb 4 17:22:50 2016 -0500
fixed mismatched return types in FileCapture::capture_size() signature
return (current_block);
}
-/*
- * Get the file size captured in the file buffer
- *
- * Returns:
- * the size of file
- */
-size_t FileCapture::capture_size()
+// Get the file size captured in the file buffer
+uint64_t FileCapture::capture_size() const
{
return file_size;
}
// Get the file size captured in the file buffer
// Returns:
// the size of file
- uint64_t capture_size();
+ uint64_t capture_size() const;
// Store files on local disk
void store_file(FileContext *file);