aboutsummaryrefslogtreecommitdiff
path: root/src/processor/logging.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/processor/logging.cc')
-rw-r--r--src/processor/logging.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/processor/logging.cc b/src/processor/logging.cc
index a6e15cae..8bb95a69 100644
--- a/src/processor/logging.cc
+++ b/src/processor/logging.cc
@@ -83,13 +83,13 @@ LogStream::~LogStream() {
stream_ << std::endl;
}
-string HexString(u_int32_t number) {
+string HexString(uint32_t number) {
char buffer[11];
snprintf(buffer, sizeof(buffer), "0x%x", number);
return string(buffer);
}
-string HexString(u_int64_t number) {
+string HexString(uint64_t number) {
char buffer[19];
snprintf(buffer, sizeof(buffer), "0x%" PRIx64, number);
return string(buffer);