summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2010-01-13 10:57:28 -0600
committerClark Williams <williams@redhat.com>2010-01-13 10:57:28 -0600
commita548d8fc805d5d4a55a3042ac585d6b8db6df23a (patch)
treefe1b2393747824c2666636d8e06274070f4224c1
parent77abded073c5d11d118112c46c22a84ddc29e771 (diff)
downloadrt-tests-a548d8fc805d5d4a55a3042ac585d6b8db6df23a.tar.gz
fixed missing short option 'S' in getopt_long() call
Signed-off-by: Clark Williams <williams@redhat.com>
-rw-r--r--src/cyclictest/cyclictest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cyclictest/cyclictest.c b/src/cyclictest/cyclictest.c
index 15bc39d..ce4d911 100644
--- a/src/cyclictest/cyclictest.c
+++ b/src/cyclictest/cyclictest.c
@@ -899,7 +899,7 @@ static void process_options (int argc, char *argv[])
{"smp", no_argument, NULL, 'S'},
{NULL, 0, NULL, 0}
};
- int c = getopt_long(argc, argv, "a::b:Bc:Cd:Efh:i:Il:MnNo:O:p:Pmqrst::uvD:wWTy:",
+ int c = getopt_long(argc, argv, "a::b:Bc:Cd:Efh:i:Il:MnNo:O:p:PmqrsSt::uvD:wWTy:",
long_options, &option_index);
if (c == -1)
break;