tiny fix, reoccuring option `h' in the getopt_long() option string
This commit is contained in:
parent
87a7aec46b
commit
2cac6ca4b2
|
|
@ -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
|
2011-06-23 Robert Larice
|
||||||
* src/frontend/com_sysinfo.c :
|
* src/frontend/com_sysinfo.c :
|
||||||
tiny rewrite, typefix, don't compare EOF with a char
|
tiny rewrite, typefix, don't compare EOF with a char
|
||||||
|
|
|
||||||
|
|
@ -870,7 +870,7 @@ main(int argc, char **argv)
|
||||||
{0, 0, 0, 0}
|
{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);
|
long_options, &option_index);
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue