corrected short options for getopt.

git-svn-id: https://afrodevices.googlecode.com/svn/trunk/baseflight@267 7c89a4a9-59b9-e629-4cfe-3a2d53b20e61
This commit is contained in:
timecop@gmail.com 2013-02-16 11:16:53 +00:00
parent f5616f1437
commit e0af7acf4f
1 changed files with 1 additions and 1 deletions

View File

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