Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Qi Xu <[email protected]>
  • Loading branch information
Qi Xu committed Mar 11, 2024
1 parent 7f68db6 commit 46713c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/db_impl/db_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1521,7 +1521,7 @@ void DBImpl::MarkLogsNotSynced(uint64_t up_to) {
}
log_sync_cv_.SignalAll();
ROCKS_LOG_INFO(immutable_db_options_.info_log,
"MarkLogsNotSynced from %" PRIu64 " to %d\n", min_wal, up_to);
"MarkLogsNotSynced from %" PRIu64 " to %" PRIu64 "\n", min_wal, up_to);
}

SequenceNumber DBImpl::GetLatestSequenceNumber() const {
Expand Down

0 comments on commit 46713c9

Please sign in to comment.