projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
31eb3ea
)
Don't let printf_unfiltered functions inherit a fixed-size buffer
author
Thomas Lord
<lord@cygnus>
Tue, 2 Nov 1993 23:03:41 +0000
(23:03 +0000)
committer
Thomas Lord
<lord@cygnus>
Tue, 2 Nov 1993 23:03:41 +0000
(23:03 +0000)
from their _filtered counterparts.
gdb/utils.c
patch
|
blob
|
history
diff --git
a/gdb/utils.c
b/gdb/utils.c
index 3ee6986124955d39e9730ab3a4798b59dee5be72..e099d6e199cf153c4861a83d81753f788f91ea9d 100644
(file)
--- 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 */