Skip to content

Commit 3b8cc0f

Browse files
authored
Merge pull request ceph#56142 from Matan-B/wip-matanb-fix_hobject_to_str
common/hobject: fix hobject_t::to_str() Reviewed-by: Ronen Friedman <[email protected]> Reviewed-by: Radoslaw Zarzynski <[email protected]>
2 parents d4caf2c + 560dc98 commit 3b8cc0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/hobject.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ string hobject_t::to_str() const
9494
out = fmt::format(FMT_COMPILE("{:016X}.{:08X}.snapdir."), poolid, revhash);
9595
} else {
9696
out = fmt::format(
97-
FMT_COMPILE("{:016X}.{:08X}.{:X}."), poolid, revhash,
97+
FMT_COMPILE("{:016X}.{:08X}.{:x}."), poolid, revhash,
9898
(unsigned long long)snap);
9999
}
100100

0 commit comments

Comments
 (0)