summaryrefslogtreecommitdiff
path: root/examples/OS/Process
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
commitc5e256f3a40834288a067928c21866f3473bd721 (patch)
tree280f25929894a75a0d415c141c275384e9ce3076 /examples/OS/Process
parent6a32d2e444f8d1dd9a8806b5e1f9a07eaa873e9d (diff)
downloadATCD-c5e256f3a40834288a067928c21866f3473bd721.tar.gz
ChangeLogTag: Sun Jan 9 12:47:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'examples/OS/Process')
-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;