[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}
{-h|--help}
{-V|--version}
{--super-block-only}
{--skip-mappings}
{--ignore-non-fatal-errors}
"""
Scenario: print help

View File

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