aboutsummaryrefslogtreecommitdiff
path: root/gdb/utils.c
diff options
context:
space:
mode:
authorThomas Lord <lord@cygnus>1993-11-02 23:03:41 +0000
committerThomas Lord <lord@cygnus>1993-11-02 23:03:41 +0000
commit69fb299ec3e9ba876351febaded544e0820e193b (patch)
tree50a97c2527d3081f06397fb68cba14202d9a5a18 /gdb/utils.c
parent31eb3ead2bffcecf0071ba7c6de3a00fbe93dcb9 (diff)
downloadgdb-69fb299ec3e9ba876351febaded544e0820e193b.zip
gdb-69fb299ec3e9ba876351febaded544e0820e193b.tar.gz
gdb-69fb299ec3e9ba876351febaded544e0820e193b.tar.bz2
Don't let printf_unfiltered functions inherit a fixed-size buffer
from their _filtered counterparts.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r--gdb/utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/utils.c b/gdb/utils.c
index 3ee6986..e099d6e 100644
--- a/gdb/utils.c
+++ b/gdb/utils.c
@@ -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 */