diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-04-19 13:08:49 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-04-19 13:08:49 +0000 |
commit | 2f16a8b231801db78fb7c7a8453fb03ba1e6b9ff (patch) | |
tree | ee369ae3e22b90f41b8b8e76b070e60aa2b93554 /gdb/xcoffsolib.c | |
parent | 6c664ed8050c5cecf261c5959bedc96a41a67767 (diff) | |
download | gdb-2f16a8b231801db78fb7c7a8453fb03ba1e6b9ff.tar.gz |
2000-04-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* xcoffsolib.c (solib_add): Fix call to vmap_symtab().
Diffstat (limited to 'gdb/xcoffsolib.c')
-rw-r--r-- | gdb/xcoffsolib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/xcoffsolib.c b/gdb/xcoffsolib.c index 5485c5e4f95..ad480521505 100644 --- a/gdb/xcoffsolib.c +++ b/gdb/xcoffsolib.c @@ -116,7 +116,7 @@ solib_add (arg_string, from_tty, target) syms_from_objfile (obj, NULL, 0, 0); new_symfile_objfile (obj, 0, 0); - vmap_symtab (vp, 0, 0); + vmap_symtab (vp); printf_unfiltered ("Done.\n"); loaded = vp->loaded = 1; } |