Skip to content

Commit b251c8a

Browse files
committed
Merge PR ceph#59025 into main
* refs/pull/59025/head: tools/rados: Fix extra NL in getxattr Reviewed-by: Rishabh Dave <[email protected]> Reviewed-by: Radoslaw Zarzynski <[email protected]> Reviewed-by: Venky Shankar <[email protected]> Reviewed-by: Ronen Friedman <[email protected]> Reviewed-by: Casey Bodley <[email protected]> Reviewed-by: Gabriel Benhanokh <[email protected]>
2 parents eac98c1 + a71990f commit b251c8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/rados/rados.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2774,7 +2774,7 @@ static int rados_tool_common(const std::map < std::string, std::string > &opts,
27742774
}
27752775
else {
27762776
string s(bl.c_str(), bl.length());
2777-
cout << s << std::endl;
2777+
cout << s;
27782778
}
27792779
} else if (strcmp(nargs[0], "rmxattr") == 0) {
27802780
if (!pool_name || nargs.size() < (obj_name ? 2 : 3)) {

0 commit comments

Comments
 (0)