diff options
author | Steve Chamberlain <sac@cygnus> | 1996-01-04 19:07:28 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1996-01-04 19:07:28 +0000 |
commit | 1750a5ef21ab77772e1aa396d9483afb8177fc8c (patch) | |
tree | 10fda53453460db4a4b1707c079dc5b53d77552b /gdb/mdebugread.c | |
parent | 3389dfdcc06b997c3a783a31c3ded0113fee46f6 (diff) | |
download | gdb-1750a5ef21ab77772e1aa396d9483afb8177fc8c.zip gdb-1750a5ef21ab77772e1aa396d9483afb8177fc8c.tar.gz gdb-1750a5ef21ab77772e1aa396d9483afb8177fc8c.tar.bz2 |
* mdebugread.c (mylookup_symbol): enum namespace becomes
enum_namespace type.
* symfile.c (add_psymbol_to_list)
(add_psymbol_addr_to_list): Ditto.
* symtab.c (lookup_partial_symbol): Ditto.
(lookup_symbol): Ditto.
(lookup_block_symbol): Ditto.
* win32-nat.c (handle_load_dll): Use incoming dll base.
(child_wait): Catch DLL load errors.
(create_child_inferior): Translated between paths correctly.
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r-- | gdb/mdebugread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index 0fa3c3d..1c88f51 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -346,7 +346,7 @@ static struct type * parse_type PARAMS ((int, union aux_ext *, unsigned int, int *, int, char *)); static struct symbol * -mylookup_symbol PARAMS ((char *, struct block *, enum namespace, +mylookup_symbol PARAMS ((char *, struct block *, namespace_enum, enum address_class)); static struct block * @@ -3731,7 +3731,7 @@ static struct symbol * mylookup_symbol (name, block, namespace, class) char *name; register struct block *block; - enum namespace namespace; + namespace_enum namespace; enum address_class class; { register int bot, top, inc; |