Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: fix usage info of omapbench #10089

Merged
merged 1 commit into from Jul 25, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/test/omap_bench.cc
Expand Up @@ -84,9 +84,9 @@ int OmapBench::setup(int argc, const char** argv) {
<< "rand for random sizes between\n"
<< " 0 and max size, uniform for all sizes"
<< " to be specified size.\n"
<< " (default "<<value_size;
cout <<"\n --name the rados id to use (default "<<rados_id;
cout<<")\n";
<< " (default uniform)\n";
cout << " --name the rados id to use (default "<< rados_id
<< ")\n";
exit(1);
}
}
Expand Down