Browse Source

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

rlar 15 years ago
parent
commit
2cac6ca4b2
  1. 4
      ChangeLog
  2. 2
      src/main.c

4
ChangeLog

@ -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

2
src/main.c

@ -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;

Loading…
Cancel
Save