* dwarf2read.c (dump_die): Change stderr gdb_stderr.
authorStu Grossman <grossman@cygnus>
Mon, 11 Jan 1999 21:51:39 +0000 (21:51 +0000)
committerStu Grossman <grossman@cygnus>
Mon, 11 Jan 1999 21:51:39 +0000 (21:51 +0000)
* expprint.c (print_subexp):  fprintf => fprintf_unfiltered.
* jv-typeprint.c (java_type_print_base):  fputs => fputs_filtered.
* stack.c (struct function_bounds):  Remove superfluous `typedef'.
* symfile.c (list_overlays_command):  stdout => gdb_stdout.
* symmisc.c (maintenance_check_symtabs):  stdout => gdb_stdout.
* utils.c (print_spaces):  Make more efficient.

gdb/ChangeLog
gdb/dwarf2read.c
gdb/jv-typeprint.c
gdb/stack.c

index 18fada5b2d49006333d43289127ad2d2b8fad07b..4796f403987a28581817075f8c1c059cad3fea3a 100644 (file)
@@ -1,3 +1,13 @@
+Mon Jan 11 13:45:57 1999  Stu Grossman  <grossman@babylon-5.cygnus.com>
+
+       * dwarf2read.c (dump_die):  Change stderr gdb_stderr.
+       * expprint.c (print_subexp):  fprintf => fprintf_unfiltered.
+       * jv-typeprint.c (java_type_print_base):  fputs => fputs_filtered.
+       * stack.c (struct function_bounds):  Remove superfluous `typedef'.
+       * symfile.c (list_overlays_command):  stdout => gdb_stdout.
+       * symmisc.c (maintenance_check_symtabs):  stdout => gdb_stdout.
+       * utils.c (print_spaces):  Make more efficient.
+       
 Mon Jan 11 13:55:51 1999  David Taylor  <taylor@texas.cygnus.com>
 
        * utils (print_spaces): fix arg to strcat; fix formatting.
index 54c8e4413963a6cc4a8e9bff6da7aa84a85d56c5..cf5206631ec869e0225ca08c904f5a2f762e3ae4 100644 (file)
@@ -5458,7 +5458,7 @@ dump_die (die)
        case DW_FORM_ref_addr:
        case DW_FORM_addr:
          fprintf (stderr, "address: ");
-         print_address_numeric (DW_ADDR (&die->attrs[i]), 1, stderr);
+         print_address_numeric (DW_ADDR (&die->attrs[i]), 1, gdb_stderr);
          break;
        case DW_FORM_block2:
        case DW_FORM_block4:
index 4c5a204183d330a8cba66268a41b82dba68f3864..40c3e90f4d1566b5752f4815504e1a6558335350 100644 (file)
@@ -111,7 +111,7 @@ java_type_print_base (type, stream, show, level)
       if (TYPE_TAG_NAME (type) != NULL && TYPE_TAG_NAME (type)[0] == '[')
        { /* array type */
          char *name = java_demangle_type_signature (TYPE_TAG_NAME (type));
-         fputs (name, stream);
+         fputs_filtered (name, stream);
          free (name);
          break;
        }
index 685d4919b700e06c04a2f09b609aa60e8180f522..e0bf7dd31d1342daba4a5c32198d2b4792dd66fb 100644 (file)
@@ -1839,7 +1839,7 @@ return_command (retval_exp, from_tty)
 
 /* Sets the scope to input function name, provided that the
    function is within the current stack frame */
-typedef struct function_bounds
+struct function_bounds
 {
     CORE_ADDR low, high;
 };