aboutsummaryrefslogtreecommitdiff
path: root/gdb/valprint.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-09-12 16:13:04 +0000
committerAndrew Cagney <cagney@redhat.com>2004-09-12 16:13:04 +0000
commit2bfb72ee0679082ba87dfbfc63561a281acee408 (patch)
tree4849e1ddc96f759dd8c5b0a812494e948b523333 /gdb/valprint.c
parent4f17c3c1492356e02695ced1f0741b9b33c2a59e (diff)
downloadgdb-2bfb72ee0679082ba87dfbfc63561a281acee408.zip
gdb-2bfb72ee0679082ba87dfbfc63561a281acee408.tar.gz
gdb-2bfb72ee0679082ba87dfbfc63561a281acee408.tar.bz2
2004-09-12 Andrew Cagney <cagney@gnu.org>
* valprint.c (print_longest): Use fputs_filtered. Make "val" const. * Makefile.in (valprint.o): Delete explict rule.
Diffstat (limited to 'gdb/valprint.c')
-rw-r--r--gdb/valprint.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/valprint.c b/gdb/valprint.c
index 64216f8..fd92750 100644
--- a/gdb/valprint.c
+++ b/gdb/valprint.c
@@ -230,7 +230,8 @@ void
print_longest (struct ui_file *stream, int format, int use_c_format,
LONGEST val_long)
{
- char *val;
+ const char *val;
+
switch (format)
{
case 'd':
@@ -253,8 +254,7 @@ print_longest (struct ui_file *stream, int format, int use_c_format,
default:
internal_error (__FILE__, __LINE__, "failed internal consistency check");
}
-
- fprintf_filtered (stream, val);
+ fputs_filtered (val, stream);
}
/* This used to be a macro, but I don't think it is called often enough