2002-02-07 Michael Snyder <msnyder@redhat.com>

* solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
	Logic bug, remove misplaced else.
This commit is contained in:
Michael Snyder 2002-02-07 23:08:55 +00:00
parent c7ef9c3fe5
commit 78b29b405f
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2002-02-07 Michael Snyder <msnyder@redhat.com>
* solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
Logic bug, remove misplaced else.
2002-02-07 Klee Dienes <klee@apple.com>
* fork-inferior.c (fork_inferior): Add '!' to the list of

View File

@ -135,11 +135,10 @@ legacy_svr4_fetch_link_map_offsets (void)
if (bfd_get_arch_size (exec_bfd) == 32)
return lmp32;
}
else if (TARGET_PTR_BIT == 32)
if (TARGET_PTR_BIT == 32)
return lmp32;
else
#endif
return lmp;
return lmp;
}
#endif /* HAVE_LINK_H */