From: Michal Jarzabek Date: Sat, 26 Sep 2015 13:45:22 +0000 (+0100) Subject: examples/librados/hello_world.cc:missing semicolon X-Git-Tag: v9.1.0~66^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2fea3a56a6f64c9fa0c9a23d46553d15d265534c;p=ceph.git examples/librados/hello_world.cc:missing semicolon Signed-off-by: Michal Jarzabek --- diff --git a/examples/librados/hello_world.cc b/examples/librados/hello_world.cc index 9d3713495a3b..9573ecd73a64 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;