Skip to content

Commit

Permalink
rbd: fix a typo in error output
Browse files Browse the repository at this point in the history
Signed-off-by: Dongsheng Yang <[email protected]>
  • Loading branch information
yangdongsheng committed Jan 12, 2019
1 parent 3b49700 commit c341d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/rbd/action/Journal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1214,7 +1214,7 @@ int execute_import(const po::variables_map &vm,
r = do_import_journal(io_ctx, journal_name, path, vm[at::NO_ERROR].as<bool>(),
vm[at::VERBOSE].as<bool>());
if (r < 0) {
std::cerr << "rbd: journal export: " << cpp_strerror(r) << std::endl;
std::cerr << "rbd: journal import: " << cpp_strerror(r) << std::endl;
return r;
}
return 0;
Expand Down

0 comments on commit c341d9b

Please sign in to comment.