summaryrefslogtreecommitdiff
path: root/db/log_reader.h
diff options
context:
space:
mode:
Diffstat (limited to 'db/log_reader.h')
-rw-r--r--db/log_reader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/log_reader.h b/db/log_reader.h
index 001da89..ba711f8 100644
--- a/db/log_reader.h
+++ b/db/log_reader.h
@@ -5,7 +5,7 @@
#ifndef STORAGE_LEVELDB_DB_LOG_READER_H_
#define STORAGE_LEVELDB_DB_LOG_READER_H_
-#include <stdint.h>
+#include <cstdint>
#include "db/log_format.h"
#include "leveldb/slice.h"
@@ -24,7 +24,7 @@ class Reader {
public:
virtual ~Reporter();
- // Some corruption was detected. "size" is the approximate number
+ // Some corruption was detected. "bytes" is the approximate number
// of bytes dropped due to the corruption.
virtual void Corruption(size_t bytes, const Status& status) = 0;
};