From d9e2aa65fc5fa9ecded8509f3fb2ef6fc25aae23 Mon Sep 17 00:00:00 2001 From: Benny Halevy Date: Mon, 24 Dec 2018 18:45:31 +0200 Subject: [PATCH] sstables: mc: use api::timestamp_type in write_liveness_info Signed-off-by: Benny Halevy --- sstables/mc/writer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sstables/mc/writer.cc b/sstables/mc/writer.cc index df4f6ea056..e9de94ce5f 100644 --- a/sstables/mc/writer.cc +++ b/sstables/mc/writer.cc @@ -1007,7 +1007,7 @@ void writer::write_liveness_info(bytes_ostream& writer, const row_marker& marker return; } - uint64_t timestamp = marker.timestamp(); + api::timestamp_type timestamp = marker.timestamp(); _c_stats.update_timestamp(timestamp); write_delta_timestamp(writer, timestamp);