mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-11-21 01:40:57 +08:00
* libltdl/ltdl.c (lt_dlexit): Add casts to fix compilation with
C++ compiler again.
This commit is contained in:
parent
dd744836ce
commit
713a03c4de
@ -1,5 +1,8 @@
|
||||
2007-02-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* libltdl/ltdl.c (lt_dlexit): Add casts to fix compilation with
|
||||
C++ compiler again.
|
||||
|
||||
* tests/destdir.at: Add `libtool' keyword to tests.
|
||||
|
||||
2007-02-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
@ -289,11 +289,11 @@ lt_dlexit (void)
|
||||
pointed to by 'cur'. */
|
||||
if (cur)
|
||||
{
|
||||
for (tmp = handles; tmp; tmp = tmp->next)
|
||||
for (tmp = (lt__handle *) handles; tmp; tmp = tmp->next)
|
||||
if (tmp == cur)
|
||||
break;
|
||||
if (! tmp)
|
||||
cur = handles;
|
||||
cur = (lt__handle *) handles;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user