Skip to content

Commit a71990f

Browse files
committed
tools/rados: Fix extra NL in getxattr
Recent code refactor caused extra "std::endl" output. Signed-off-by: Adam Kupczyk <[email protected]>
1 parent cc5533f commit a71990f

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)