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.
This commit is contained in:
Andrew Cagney
2004-09-12 16:13:04 +00:00
parent 4f17c3c149
commit 2bfb72ee06
3 changed files with 7 additions and 9 deletions

View File

@@ -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