Skip to content

Commit 5c48921

Browse files
author
meilirensheng2020
committed
[fix][mdsv2] Fix minor issue
1 parent b8a5df2 commit 5c48921

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mdsv2/common/type.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ struct Range {
4646
std::string start;
4747
std::string end;
4848

49-
std::string ToString() const { return fmt::format("[{}, {})", start, end); }
49+
std::string ToString() const { return fmt::format("[{}, {}]", start, end); }
5050
};
5151

5252
inline bool IsDir(Ino ino) { return (ino & 1) == 1; }

0 commit comments

Comments
 (0)