We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3170b6 commit f171faaCopy full SHA for f171faa
utilities/checkpoint/checkpoint.cc
@@ -24,6 +24,7 @@
24
#include "rocksdb/env.h"
25
#include "rocksdb/transaction_log.h"
26
#include "util/file_util.h"
27
+#include "port/port.h"
28
29
namespace rocksdb {
30
@@ -131,7 +132,7 @@ Status CheckpointImpl::CreateCheckpoint(const std::string& checkpoint_dir) {
131
132
(type == kDescriptorFile) ? manifest_file_size : 0);
133
}
134
- Log(db_->GetOptions().info_log, "Number of log files %ld",
135
+ Log(db_->GetOptions().info_log, "Number of log files %" ROCKSDB_PRIszt,
136
live_wal_files.size());
137
138
// Link WAL files. Copy exact size of last one because it is the only one
0 commit comments