summaryrefslogtreecommitdiff
path: root/linkers/rtems-ra.cpp
diff options
context:
space:
mode:
authorPeng Fan <Peng.Fan@freescale.com>2014-08-09 20:32:50 +0800
committerChris Johns <chrisj@rtems.org>2014-09-01 09:59:01 +1000
commite5165d2d0a02443f82198ec00459bfbc4c150709 (patch)
tree6c27ba6c118a57b735a25e41affe71c0c891e324 /linkers/rtems-ra.cpp
parent097f1fdf569e631f5fae95f27e0ec2a2f626bcbc (diff)
Fix getopt_long usage
When passing shorhand options, getopt_long sometimes does not handle them correctly. Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Diffstat (limited to 'linkers/rtems-ra.cpp')
-rw-r--r--linkers/rtems-ra.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linkers/rtems-ra.cpp b/linkers/rtems-ra.cpp
index 0900ccc..5edfb12 100644
--- a/linkers/rtems-ra.cpp
+++ b/linkers/rtems-ra.cpp
@@ -177,7 +177,7 @@ main (int argc, char* argv[])
while (true)
{
- int opt = ::getopt_long (argc, argv, "hVvnS:a:p:L:l:o:C:E:c:R:W:A:r:d", rld_opts, NULL);
+ int opt = ::getopt_long (argc, argv, "hVvnSa:p:L:l:o:C:E:c:R:W:A:r:d:", rld_opts, NULL);
if (opt < 0)
break;