diff options
author | Stu Grossman <grossman@cygnus> | 1992-09-15 06:27:18 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1992-09-15 06:27:18 +0000 |
commit | a8e033f2a2dca7a104e66ab1351c46fc2c2baf03 (patch) | |
tree | 2a65792c4fd0585c290d7bf8a2bebafbe4f237dc /gdb/target.c | |
parent | b36e3a9b49aa9a2a24555e0a6a50f5cd3d5323b7 (diff) | |
download | gdb-a8e033f2a2dca7a104e66ab1351c46fc2c2baf03.zip gdb-a8e033f2a2dca7a104e66ab1351c46fc2c2baf03.tar.gz gdb-a8e033f2a2dca7a104e66ab1351c46fc2c2baf03.tar.bz2 |
* breakpoint.c, core.c, exec.c, language.c, main.c, printcmd.c,
symfile.c, target.c, valprint.c: Use _filtered form of *printf.
defs.h, utils.c: Make vfprintf_filtered global.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gdb/target.c b/gdb/target.c index d253623..93bb64e 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -123,7 +123,7 @@ add_target (t) { if (t->to_magic != OPS_MAGIC) { - fprintf(stderr, "Magic number of %s target struct wrong\n", + fprintf_filtered(stderr, "Magic number of %s target struct wrong\n", t->to_shortname); abort(); } @@ -202,7 +202,7 @@ default_terminal_info (args, from_tty) char *args; int from_tty; { - printf("No saved terminal information.\n"); + printf_filtered("No saved terminal information.\n"); } #if 0 @@ -245,7 +245,7 @@ kill_or_be_killed (from_tty) { if (target_has_execution) { - printf ("You are already running a program:\n"); + printf_filtered ("You are already running a program:\n"); target_files_info (); if (query ("Kill it? ")) { target_kill (); @@ -290,7 +290,7 @@ cleanup_target (t) the struct definition, but not all the places that initialize one. */ if (t->to_magic != OPS_MAGIC) { - fprintf(stderr, "Magic number of %s target struct wrong\n", + fprintf_filtered(stderr, "Magic number of %s target struct wrong\n", t->to_shortname); abort(); } @@ -522,7 +522,7 @@ target_xfer_memory (memaddr, myaddr, len, write) /* If this address is for nonexistent memory, read zeros if reading, or do nothing if writing. Return error. */ if (!write) - (void) memset (myaddr, 0, len); + memset (myaddr, 0, len); if (errno == 0) return EIO; else @@ -547,7 +547,7 @@ target_info (args, from_tty) int has_all_mem = 0; if (symfile_objfile != NULL) - printf ("Symbols from \"%s\".\n", symfile_objfile->name); + printf_filtered ("Symbols from \"%s\".\n", symfile_objfile->name); #ifdef FILES_INFO_HOOK if (FILES_INFO_HOOK ()) @@ -561,8 +561,8 @@ target_info (args, from_tty) if ((int)(t->to_stratum) <= (int)dummy_stratum) continue; if (has_all_mem) - printf("\tWhile running this, gdb does not access memory from...\n"); - printf("%s:\n", t->to_longname); + printf_filtered("\tWhile running this, gdb does not access memory from...\n"); + printf_filtered("%s:\n", t->to_longname); (t->to_files_info)(t); has_all_mem = t->to_has_all_memory; } |