examples/librados/hello_world.cc:missing semicolon

Signed-off-by: Michal Jarzabek <stiopa@gmail.com>
This commit is contained in:
Michal Jarzabek 2015-09-26 14:45:22 +01:00
parent 18a985affd
commit 2fea3a56a6

View File

@ -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;