mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-02-23 15:19:27 +08:00
* libltdl/ltdl.c (lt_remove_dlloader): typo, s/=/==/g.
This commit is contained in:
parent
7b0532e642
commit
b87267f513
@ -1,6 +1,8 @@
|
||||
2000-02-21 Gary V. Vaughan <gary@oranda.demon.co.uk>
|
||||
|
||||
* libltdl/ltdl.c (lt_dlinit): removed unused variable, `loader'.
|
||||
|
||||
* libltdl/ltdl.c (lt_remove_dlloader): typo, s/=/==/g.
|
||||
|
||||
2000-02-03 Gary V. Vaughan <gary@oranda.demon.co.uk>
|
||||
|
||||
|
@ -803,7 +803,6 @@ int
|
||||
lt_dlinit LTDL_PARAMS((void))
|
||||
{
|
||||
/* initialize libltdl */
|
||||
lt_dlloader_t **loader = &loaders;
|
||||
int errors = 0;
|
||||
|
||||
if (initialized) { /* Initialize only at first call. */
|
||||
@ -1878,7 +1877,7 @@ lt_remove_dlloader (loader_name)
|
||||
|
||||
/* Fail if there are any open modules which use this loader. */
|
||||
for (handle = handles; handle; handle = handle->next)
|
||||
if (handle->loader = place) {
|
||||
if (handle->loader == place) {
|
||||
last_error = LT_DLSTRERROR(REMOVE_LOADER);
|
||||
return 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user