We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The thin_trim usage is:
thin_trim_cmd::usage(std::ostream &out) const { out << "Usage: " << get_name() << " [options] {device|file}\n" << "Options:\n" << " {--pool-inactive}\n" << " {-h|--help}\n" << " {-V|--version}" << endl; }
but the getopt structure is different:
const struct option longopts[] = { { "help", no_argument, NULL, 'h' }, { "version", no_argument, NULL, 'V' }, { "metadata-dev", required_argument, NULL, 0 }, { "data-dev", required_argument, NULL, 1 }, { "pool-inactive", no_argument, NULL, 2 }, { NULL, no_argument, NULL, 0 } };
Also the manpage does not match the getopt options.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The thin_trim usage is:
but the getopt structure is different:
Also the manpage does not match the getopt options.
The text was updated successfully, but these errors were encountered: