Index: third_party/leveldatabase/chromium_logger.h |
diff --git a/third_party/leveldatabase/chromium_logger.h b/third_party/leveldatabase/chromium_logger.h |
index 933fb5106efb4a2367c3316ff8feec4ac584baa2..27ab3abf4a9ee9ad6ae0f990fc080dea5eaf6641 100644 |
--- a/third_party/leveldatabase/chromium_logger.h |
+++ b/third_party/leveldatabase/chromium_logger.h |
@@ -5,6 +5,8 @@ |
#ifndef THIRD_PARTY_LEVELDATABASE_CHROMIUM_LOGGER_H_ |
#define THIRD_PARTY_LEVELDATABASE_CHROMIUM_LOGGER_H_ |
+#include <stdint.h> |
+ |
#include "base/files/file.h" |
#include "base/format_macros.h" |
#include "base/strings/string_util.h" |
@@ -48,7 +50,7 @@ class ChromiumLogger : public Logger { |
t.minute, |
t.second, |
t.millisecond, |
- static_cast<uint64>(thread_id)); |
+ static_cast<uint64_t>(thread_id)); |
// Print the message |
if (p < limit) { |