diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-01-02 10:52:59 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2006-01-02 10:52:59 +0000 |
commit | 0db2497936950725ae71e997091ef276a3ec43ee (patch) | |
tree | 7d66db137accea00fe402dfabf8e5de3a4af58c6 /posix/tst-execle1.c | |
parent | b9ea6c38033d6ab0bda9dddb34cc7a4c6ff82084 (diff) | |
download | glibc-0db2497936950725ae71e997091ef276a3ec43ee.tar.gz glibc-0db2497936950725ae71e997091ef276a3ec43ee.tar.xz glibc-0db2497936950725ae71e997091ef276a3ec43ee.zip |
Updated to fedora-glibc-20060102T1045
Diffstat (limited to 'posix/tst-execle1.c')
-rw-r--r-- | posix/tst-execle1.c | 2 |
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); |