[thin_check] fluff

This commit is contained in:
Joe Thornber 2013-05-23 13:57:15 +01:00
parent 64d14a75e1
commit 5498e0bc46
2 changed files with 5 additions and 2 deletions

View File

@ -25,6 +25,9 @@ Feature: thin_check
{-q|--quiet} {-q|--quiet}
{-h|--help} {-h|--help}
{-V|--version} {-V|--version}
{--super-block-only}
{--skip-mappings}
{--ignore-non-fatal-errors}
""" """
Scenario: print help Scenario: print help

View File

@ -323,8 +323,8 @@ int main(int argc, char **argv)
int c; int c;
flags fs; flags fs;
bool quiet = false; bool quiet = false;
const char shortopts[] = "qhV"; char const shortopts[] = "qhV";
const struct option longopts[] = { option const longopts[] = {
{ "quiet", no_argument, NULL, 'q'}, { "quiet", no_argument, NULL, 'q'},
{ "help", no_argument, NULL, 'h'}, { "help", no_argument, NULL, 'h'},
{ "version", no_argument, NULL, 'V'}, { "version", no_argument, NULL, 'V'},