summaryrefslogtreecommitdiff
path: root/examples/OS/Process/process.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-01-09 12:49:14 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-01-09 12:49:14 +0000
commit5defebfb8257d841137962f5445a2e80275fa531 (patch)
tree280f25929894a75a0d415c141c275384e9ce3076 /examples/OS/Process/process.cpp
parentd4bda00574f62d4fec8e9d99f006371c3eeab365 (diff)
downloadATCD-5defebfb8257d841137962f5445a2e80275fa531.tar.gz
ChangeLogTag: Sun Jan 9 12:47:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'examples/OS/Process/process.cpp')
-rw-r--r--examples/OS/Process/process.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/OS/Process/process.cpp b/examples/OS/Process/process.cpp
index 297047bd6e7..b0378f7b537 100644
--- a/examples/OS/Process/process.cpp
+++ b/examples/OS/Process/process.cpp
@@ -399,10 +399,10 @@ win32_spawn_environment_process (void)
// Normally, this would be just GetEnvironmentStrings, but it
// doesn't follow the same rules as the rest of the Win32 API
- char *existing_environment = ACE_OS::getenvstrings ();
- char environment[10240];
+ ACE_TCHAR *existing_environment = ACE_OS::getenvstrings ();
+ ACE_TCHAR environment[10240];
ACE_OS::sprintf (environment,
- "ACE_PROCESS_TEST=%s",
+ ACE_TEXT("ACE_PROCESS_TEST=%s"),
environment_string);
int size = 0;