summaryrefslogtreecommitdiff
path: root/gdb/cli-out.c
diff options
context:
space:
mode:
authorKeith Seitz <keiths@redhat.com>2001-06-21 22:54:06 +0000
committerKeith Seitz <keiths@redhat.com>2001-06-21 22:54:06 +0000
commit405ee9cf3a9c5b9ee482a08b5bd08e8cad275be2 (patch)
tree2d9fc6c5baeb6bbc82f46d36b2cb97bdf469c84e /gdb/cli-out.c
parentd0125bc478f3cdbd10043e2ccb536540f8c3f46f (diff)
downloadgdb-405ee9cf3a9c5b9ee482a08b5bd08e8cad275be2.tar.gz
* 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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/cli-out.c b/gdb/cli-out.c
index 3e8e482f4d6..42adc798b3d 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);
}