summaryrefslogtreecommitdiff
path: root/gdb/solib-aix5.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2001-03-16 18:06:44 +0000
committerKevin Buettner <kevinb@redhat.com>2001-03-16 18:06:44 +0000
commit162ab0435e33dbd4bbedcd8188e611aac5962ee2 (patch)
treeb36d3fdfa26d7353c96e7e6a1d87c99c8276d448 /gdb/solib-aix5.c
parentf970cf1b33642635263512c7c5c736675ea3db27 (diff)
downloadgdb-162ab0435e33dbd4bbedcd8188e611aac5962ee2.tar.gz
Change type of ``storage_needed'' from unsigned int to long.
Diffstat (limited to 'gdb/solib-aix5.c')
-rw-r--r--gdb/solib-aix5.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/gdb/solib-aix5.c b/gdb/solib-aix5.c
index b75425b0235..9207c214490 100644
--- a/gdb/solib-aix5.c
+++ b/gdb/solib-aix5.c
@@ -105,7 +105,7 @@ static void aix5_relocate_main_executable (void);
static CORE_ADDR
bfd_lookup_symbol (bfd *abfd, char *symname)
{
- unsigned int storage_needed;
+ long storage_needed;
asymbol *sym;
asymbol **symbol_table;
unsigned int number_of_symbols;
@@ -140,10 +140,6 @@ bfd_lookup_symbol (bfd *abfd, char *symname)
/* Look for the symbol in the dynamic string table too. */
storage_needed = bfd_get_dynamic_symtab_upper_bound (abfd);
-/* FIXME: This problem should be addressed in BFD. */
-#define REASONABLE_LIMIT 0x400000
- if (storage_needed > REASONABLE_LIMIT)
- storage_needed = REASONABLE_LIMIT;
if (storage_needed > 0)
{