* 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: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.
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:
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;
}
/* 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;
};