diff options
author | Keith Seitz <keiths@redhat.com> | 2001-06-21 22:54:06 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2001-06-21 22:54:06 +0000 |
commit | 8d2139f30cb6a16072ab84c45a4bdd4497c6322b (patch) | |
tree | 949ba0c27b39f54dd203a5fc0e4823c1ce9af942 /gdb/cli-out.c | |
parent | 1cac90122e6eb294afe3fac7aedd4a04cf8283ef (diff) | |
download | binutils-8d2139f30cb6a16072ab84c45a4bdd4497c6322b.zip binutils-8d2139f30cb6a16072ab84c45a4bdd4497c6322b.tar.gz binutils-8d2139f30cb6a16072ab84c45a4bdd4497c6322b.tar.bz2 |
* cli-out.c (cli_out_new): Initialize new structure member
"suppress_output".
Diffstat (limited to 'gdb/cli-out.c')
-rw-r--r-- | gdb/cli-out.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/cli-out.c b/gdb/cli-out.c index 3e8e482..42adc79 100644 --- a/gdb/cli-out.c +++ b/gdb/cli-out.c @@ -364,6 +364,7 @@ cli_out_new (struct ui_file *stream) struct ui_out_data *data = XMALLOC (struct ui_out_data); data->stream = stream; + data->suppress_output = 0; return ui_out_new (&cli_ui_out_impl, data, flags); } |