diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-04-23 04:43:59 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-04-23 04:43:59 +0000 |
commit | a7c03cabf931b077d70c6f80ec02c7728a429f49 (patch) | |
tree | 61d38d262d43ac77fc2ad94c9e7e850cd5607622 /ace/System_Time.cpp | |
parent | 2aa7b10780ad7c670f588dce4ec341351a0646aa (diff) | |
download | ATCD-a7c03cabf931b077d70c6f80ec02c7728a429f49.tar.gz |
ChangeLogTag:Sat Apr 22 20:53:11 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/System_Time.cpp')
-rw-r--r-- | ace/System_Time.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/System_Time.cpp b/ace/System_Time.cpp index c7e8a5e9e85..192fe6cdcfb 100644 --- a/ace/System_Time.cpp +++ b/ace/System_Time.cpp @@ -5,7 +5,7 @@ ACE_RCSID(ace, System_Time, "$Id$") -ACE_System_Time::ACE_System_Time (LPCTSTR poolname) +ACE_System_Time::ACE_System_Time (const ACE_TCHAR *poolname) : delta_time_ (0) { ACE_TRACE ("ACE_System_Time::ACE_System_Time"); @@ -23,8 +23,8 @@ ACE_System_Time::ACE_System_Time (LPCTSTR poolname) MAXPATHLEN - 17) == -1) // -17 for ace-malloc-XXXXXX { ACE_ERROR ((LM_ERROR, - "Temporary path too long, " - "defaulting to current directory\n")); + ACE_TEXT ("Temporary path too long, ") + ACE_TEXT ("defaulting to current directory\n"))); this->poolname_[0] = 0; } @@ -36,7 +36,7 @@ ACE_System_Time::ACE_System_Time (LPCTSTR poolname) else ACE_OS::strncpy (this->poolname_, poolname, - (sizeof this->poolname_ / sizeof (TCHAR))); + (sizeof this->poolname_ / sizeof (ACE_TCHAR))); ACE_NEW (this->shmem_, |