diff options
author | Steve Huston <shuston@riverace.com> | 1998-06-29 16:34:28 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 1998-06-29 16:34:28 +0000 |
commit | 638a060ff1e68dbdb372245d0c3c73d3ba92c2e7 (patch) | |
tree | 8b77aa24df36bbb65b6420a447da72e7aa3aaa85 /ace | |
parent | bde1c193253574b8eb36d185dfa80ef720b0a48b (diff) | |
download | ATCD-638a060ff1e68dbdb372245d0c3c73d3ba92c2e7.tar.gz |
Changed a ASYS_TCHAR * to const - prevents future error - conversion from string
literal to char * is deprecated.
Diffstat (limited to 'ace')
-rw-r--r-- | ace/ACE.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/ACE.cpp b/ace/ACE.cpp index 145c6b213c4..4b087fb7082 100644 --- a/ace/ACE.cpp +++ b/ace/ACE.cpp @@ -619,7 +619,7 @@ ACE::ldfind (const ASYS_TCHAR filename[], // platform. ASYS_TCHAR *s = ACE_OS::strrchr (searchfilename, '.'); - ASYS_TCHAR *dll_suffix = + const ASYS_TCHAR *dll_suffix = #if !defined (ACE_HAS_MOSTLY_UNICODE_APIS) ACE_DLL_SUFFIX; #else |