Pass the correct number of parameters to `symbol_file_add'.
authorMichael Tiemann <tiemann@cygnus>
Mon, 1 Jun 1992 23:19:09 +0000 (23:19 +0000)
committerMichael Tiemann <tiemann@cygnus>
Mon, 1 Jun 1992 23:19:09 +0000 (23:19 +0000)
gdb/ChangeLog
gdb/remote-vx.c

index 202e1f698ee40f7417237c57b81d77a930e09a4e..f299166e5aafe8bc779f4485789b7dd1ef89c783 100644 (file)
@@ -1,5 +1,8 @@
 Mon Jun  1 16:16:12 1992  Michael Tiemann  (tiemann@cygnus.com)
 
+       * remote-vx.c (vx_load_command,add_symbol_stub): Default READNOW
+       parameter in call to `symbol_file_add' to 0.
+
        * xm-sun4os4.h (MALLOC_INCOMPATIBLE): Define it.
 
 Sun May 31 06:38:27 1992  Michael Tiemann  (tiemann@cygnus.com)
index 1b3bc4d8b3d1aaf418cb2576a43023fcd513fdf8..e55630f0738ce62f64eaf5a486f18922f2a73035 100644 (file)
@@ -712,7 +712,7 @@ vx_load_command (arg_string, from_tty)
   immediate_quit--;
 
   /* FIXME, for now we ignore data_addr and bss_addr.  */
-  (void) symbol_file_add (arg_string, from_tty, text_addr, 0, 0);
+  (void) symbol_file_add (arg_string, from_tty, text_addr, 0, 0, 0);
 }
 
 #ifdef FIXME  /* Not ready for prime time */
@@ -1036,7 +1036,7 @@ add_symbol_stub (arg)
   struct ldfile *pLoadFile = (struct ldfile *)arg;
 
   printf("\t%s: ", pLoadFile->name);
-  (void) symbol_file_add (pLoadFile->name, 0, pLoadFile->txt_addr, 0, 0);
+  (void) symbol_file_add (pLoadFile->name, 0, pLoadFile->txt_addr, 0, 0, 0);
   printf ("ok\n");
   return 1;
 }