summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-11-11 03:52:37 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-11-11 03:52:37 +0000
commit0b0b357805e5c57f9cb92820a599f9d4096d7078 (patch)
tree5db2087d9171204665ad17c69c3247e103220493
parentd3570b6391c8e6f6c0e70652e12c9015d44a1143 (diff)
downloadATCD-0b0b357805e5c57f9cb92820a599f9d4096d7078.tar.gz
added const to loop index, in CHORUS code
-rw-r--r--ace/Process.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Process.cpp b/ace/Process.cpp
index c5bc301a0d0..3a7606d4cc4 100644
--- a/ace/Process.cpp
+++ b/ace/Process.cpp
@@ -77,7 +77,7 @@ ACE_Process::spawn (ACE_Process_Options &options)
{
// Add the new environment variables to the environment context
// of the context before doing an <execvp>.
- for (char **user_env = options.env_argv ();
+ for (char *const *user_env = options.env_argv ();
*user_env != 0;
user_env++)
if (ACE_OS::putenv (*user_env) != 0)