diff options
author | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-13 01:21:57 +0000 |
---|---|---|
committer | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-13 01:21:57 +0000 |
commit | 7160e530fc43393be47a655ce100e1fc125dc6d9 (patch) | |
tree | 05479c9b98febc8a45460fec03442753e5a81f0e /ace/DLL.cpp | |
parent | 6aeced075745800ab99d5386488da57b1afa9b67 (diff) | |
download | ATCD-7160e530fc43393be47a655ce100e1fc125dc6d9.tar.gz |
ChangeLogTag: Thu Oct 12 18:19:46 2000 Priyanka Gontla <pgontla@ece.uci.edu>
Diffstat (limited to 'ace/DLL.cpp')
-rw-r--r-- | ace/DLL.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/DLL.cpp b/ace/DLL.cpp index f198472df81..9a247b17b73 100644 --- a/ace/DLL.cpp +++ b/ace/DLL.cpp @@ -71,9 +71,9 @@ ACE_DLL::open (const ACE_TCHAR *dll_filename, // Transform the pathname into the appropriate dynamic link library // by searching the ACE_LD_SEARCH_PATH. - int result = ACE::ldfind (dll_filename, - dll_pathname, - (sizeof dll_pathname / sizeof (ACE_TCHAR))); + int result = ACE_Lib_Find::ldfind (dll_filename, + dll_pathname, + (sizeof dll_pathname / sizeof (ACE_TCHAR))); // Check for errors if (result != 0) return result; |