Skip to content

Commit

Permalink
fix compile warning
Browse files Browse the repository at this point in the history
  • Loading branch information
igorcanadi committed May 1, 2014
1 parent 0afc8bc commit d29e48b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion table/format.cc
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ Status ReadBlockContents(RandomAccessFile* file,
const char* data = contents.data(); // Pointer to where Read put the data
if (options.verify_checksums) {
uint32_t value = DecodeFixed32(data + n + 1);
uint32_t actual;
uint32_t actual = 0;
switch (footer.checksum()) {
case kCRC32c:
value = crc32c::Unmask(value);
Expand Down

0 comments on commit d29e48b

Please sign in to comment.