Browse Source

corrected short options for getopt.

git-svn-id: https://afrodevices.googlecode.com/svn/trunk/baseflight@267 7c89a4a9-59b9-e629-4cfe-3a2d53b20e61
master
timecop@gmail.com 12 years ago
parent
commit
e0af7acf4f
  1. 2
      support/stmloader/loader.c

2
support/stmloader/loader.c

@ -62,7 +62,7 @@ unsigned int loaderOptions(int argc, char **argv) {
{ NULL, 0, NULL, 0 }
};
while ((ch = getopt_long(argc, argv, "hp:b:f:o", longopts, NULL)) != -1)
while ((ch = getopt_long(argc, argv, "hp:b:f:o:n", longopts, NULL)) != -1)
switch (ch) {
case 'h':
loaderUsage();

Loading…
Cancel
Save