diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2015-01-07 13:26:42 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2015-01-07 13:26:42 +0100 |
commit | 516c45013d9fa31905f172e6fc7ca9072b5148cf (patch) | |
tree | 9f2a06d8ac3f4d2e10647688301f9fa2ba14b44a /test/nptl/tst-exec4.c | |
parent | 638a23483b40c5b606ee323e6612e7e454e5154b (diff) |
test: Adjust passed options
to follow suit 067637375658047d70c296606ae17ef0bc86499d
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test/nptl/tst-exec4.c')
-rw-r--r-- | test/nptl/tst-exec4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/nptl/tst-exec4.c b/test/nptl/tst-exec4.c index b5d290f77..1a4b88c69 100644 --- a/test/nptl/tst-exec4.c +++ b/test/nptl/tst-exec4.c @@ -51,7 +51,7 @@ tf (void *arg) char **argv = (char **) alloca ((n + 1) * sizeof (char *)); for (n = 0; oldargv[n + 1] != NULL; ++n) argv[n] = oldargv[n + 1]; - argv[n++] = (char *) "--direct"; + argv[n++] = (char *) "-d"; argv[n] = NULL; execv (argv[0], argv); |