This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Minor fix to pa64solib.c



Someone added a new parameter to pa64_solib_load_symbols, but missed adding
the argument to the caller of pa64_solib_load_symbols.

This patch fixes that oversight.


2000-11-20  Jeffrey A Law  (law@cygnus.com)

        * pa64solib.c (add_to_solib): Pass TARGET to pa64_solib_load_symbols.

Index: pa64solib.c
===================================================================
RCS file: /cvs/src/src/gdb/pa64solib.c,v
retrieving revision 1.7
diff -c -3 -p -r1.7 pa64solib.c
*** pa64solib.c	2000/08/27 22:30:29	1.7
--- pa64solib.c	2000/11/20 17:41:26
*************** add_to_solist (boolean from_tty, char *d
*** 1171,1177 ****
    pa64_solib_load_symbols (new_so, 
  			   dll_path,
  			   from_tty, 
! 			   0);
    return;
  }
  
--- 1171,1178 ----
    pa64_solib_load_symbols (new_so, 
  			   dll_path,
  			   from_tty, 
! 			   0,
! 			   target);
    return;
  }
  



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]