summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-05-15 17:24:22 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-05-15 17:24:22 +0000
commit8ef5f0019407d95479166db61016b8eed140e43b (patch)
treed38a0783283b7eb0da2013ba82a6a3c7ce63ac3f
parentf22d3de8f43dc8cdc91af560a608011e8ad18fb0 (diff)
downloadATCD-8ef5f0019407d95479166db61016b8eed140e43b.tar.gz
ChangeLogTag:Wed May 15 17:18:58 UTC 2002 Don Hinton <dhinton@ieee.org>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--ace/DLL.cpp6
4 files changed, 24 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e2243d33a74..b7488f9c095 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Wed May 15 17:18:58 UTC 2002 Don Hinton <dhinton@ieee.org>
+
+ * ace/DLL.cpp (open):
+
+ Removed unreferenced return value. Thanks to Nanbor
+ for noticing this.
+
Wed May 15 16:44:27 UTC 2002 Don Hinton <dhinton@ieee.org>
* ace/DLL.cpp (save_last_error):
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index e2243d33a74..b7488f9c095 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Wed May 15 17:18:58 UTC 2002 Don Hinton <dhinton@ieee.org>
+
+ * ace/DLL.cpp (open):
+
+ Removed unreferenced return value. Thanks to Nanbor
+ for noticing this.
+
Wed May 15 16:44:27 UTC 2002 Don Hinton <dhinton@ieee.org>
* ace/DLL.cpp (save_last_error):
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index e2243d33a74..b7488f9c095 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Wed May 15 17:18:58 UTC 2002 Don Hinton <dhinton@ieee.org>
+
+ * ace/DLL.cpp (open):
+
+ Removed unreferenced return value. Thanks to Nanbor
+ for noticing this.
+
Wed May 15 16:44:27 UTC 2002 Don Hinton <dhinton@ieee.org>
* ace/DLL.cpp (save_last_error):
diff --git a/ace/DLL.cpp b/ace/DLL.cpp
index ec8ecce765b..a073cada242 100644
--- a/ace/DLL.cpp
+++ b/ace/DLL.cpp
@@ -79,9 +79,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_Lib_Find::ldfind (dll_filename,
- dll_pathname,
- (sizeof dll_pathname / sizeof (ACE_TCHAR)));
+ ACE_Lib_Find::ldfind (dll_filename,
+ dll_pathname,
+ (sizeof dll_pathname / sizeof (ACE_TCHAR)));
// The ACE_SHLIB_HANDLE object is obtained.
this->handle_ = ACE_OS::dlopen (dll_pathname,