Don't let printf_unfiltered functions inherit a fixed-size buffer

from their _filtered counterparts.
This commit is contained in:
Thomas Lord
1993-11-02 23:03:41 +00:00
parent 31eb3ead2b
commit 69fb299ec3

View File

@@ -1301,7 +1301,7 @@ vfprintf_unfiltered (stream, format, args)
char *format;
va_list args;
{
vfprintf_maybe_filtered (stream, format, args, 0);
vfprintf (stream, format, args);
}
void
@@ -1317,7 +1317,7 @@ vprintf_unfiltered (format, args)
char *format;
va_list args;
{
vfprintf_maybe_filtered (gdb_stdout, format, args, 0);
vfprintf (gdb_stdout, format, args);
}
/* VARARGS */