Skip to content

Commit d833f15

Browse files
committed
Fix bug in VersionEdit::DebugString()
1 parent 37472bb commit d833f15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db/version_edit.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ std::string VersionEdit::DebugString(bool hex_key) const {
355355
}
356356
if (has_max_column_family_) {
357357
r.append("\n MaxColumnFamily: ");
358-
r.append(max_column_family_);
358+
AppendNumberTo(&r, max_column_family_);
359359
}
360360
r.append("\n}\n");
361361
return r;

0 commit comments

Comments
 (0)