tiny fix, reoccuring option `h' in the getopt_long() option string

This commit is contained in:
rlar 2011-06-23 16:41:37 +00:00
parent 87a7aec46b
commit 2cac6ca4b2
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2011-06-23 Robert Larice
* src/main.c :
tiny fix, reoccuring option `h' in the getopt_long() option string
2011-06-23 Robert Larice
* src/frontend/com_sysinfo.c :
tiny rewrite, typefix, don't compare EOF with a char

View File

@ -870,7 +870,7 @@ main(int argc, char **argv)
{0, 0, 0, 0}
};
c = getopt_long (argc, argv, "hvbac:ihno:pqr:st:",
c = getopt_long (argc, argv, "hvbac:ino:pqr:st:",
long_options, &option_index);
if (c == -1)
break;