summaryrefslogtreecommitdiff
path: root/posix/tst-execle1.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-12-27 22:49:45 +0000
committerRoland McGrath <roland@gnu.org>2005-12-27 22:49:45 +0000
commit89c47e9c50290dd946ec4ac94baf81ae3d5da493 (patch)
tree65fd68d3d7467d0d51fd70f4c0bb7e17dfff28af /posix/tst-execle1.c
parent285a709aceecbf236acccf89153a9bef1f4fa5d0 (diff)
2005-12-27 Roland McGrath <roland@redhat.com>
* posix/tst-execle1.c (do_test): Add a const. * posix/tst-execle2.c (do_test): Likewise.
Diffstat (limited to 'posix/tst-execle1.c')
-rw-r--r--posix/tst-execle1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/tst-execle1.c b/posix/tst-execle1.c
index bacf51b1a2..84470703f1 100644
--- a/posix/tst-execle1.c
+++ b/posix/tst-execle1.c
@@ -6,7 +6,7 @@ static int
do_test (void)
{
static const char prog[] = "does-not-exist";
- char *env [] = {"FOO=BAR", NULL};
+ const char *env [] = {"FOO=BAR", NULL};
errno = 0;
execle (prog, prog, NULL, env);