diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-01-09 12:49:14 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-01-09 12:49:14 +0000 |
commit | c5e256f3a40834288a067928c21866f3473bd721 (patch) | |
tree | 280f25929894a75a0d415c141c275384e9ce3076 /examples/OS/Process | |
parent | 6a32d2e444f8d1dd9a8806b5e1f9a07eaa873e9d (diff) | |
download | ATCD-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.cpp | 6 |
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; |