From 2fea3a56a6f64c9fa0c9a23d46553d15d265534c Mon Sep 17 00:00:00 2001 From: Michal Jarzabek Date: Sat, 26 Sep 2015 14:45:22 +0100 Subject: [PATCH] examples/librados/hello_world.cc:missing semicolon Signed-off-by: Michal Jarzabek --- examples/librados/hello_world.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/librados/hello_world.cc b/examples/librados/hello_world.cc index 9d3713495a3..9573ecd73a6 100644 --- a/examples/librados/hello_world.cc +++ b/examples/librados/hello_world.cc @@ -172,7 +172,7 @@ int main(int argc, const char **argv) goto out; } else { std::cout << "we read our object " << object_name - << ", and got back " << ret << " bytes with contents\n" + << ", and got back " << ret << " bytes with contents\n"; std::string read_string; read_buf.copy(0, ret, read_string); std::cout << read_string << std::endl; -- 2.47.3